summaryrefslogtreecommitdiff
path: root/mysql-test/t/mysql_client_test_nonblock.test
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2018-03-09 14:05:35 +0200
committerMonty <monty@mariadb.org>2018-03-29 13:59:44 +0300
commita7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch)
tree70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/t/mysql_client_test_nonblock.test
parentab1941266c59a19703a74b5593cf3f508a5752d7 (diff)
downloadmariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/t/mysql_client_test_nonblock.test')
-rw-r--r--mysql-test/t/mysql_client_test_nonblock.test25
1 files changed, 0 insertions, 25 deletions
diff --git a/mysql-test/t/mysql_client_test_nonblock.test b/mysql-test/t/mysql_client_test_nonblock.test
deleted file mode 100644
index 31de14e4178..00000000000
--- a/mysql-test/t/mysql_client_test_nonblock.test
+++ /dev/null
@@ -1,25 +0,0 @@
-# This runs the mysql_client_test using the non-blocking API.
-
-# The non-blocking API is not supported in the embedded server.
--- source include/not_embedded.inc
-
-SET @old_general_log= @@global.general_log;
-SET @old_slow_query_log= @@global.slow_query_log;
-call mtr.add_suppression(" Error reading file './client_test_db/test_frm_bug.frm'");
-call mtr.add_suppression(" IP address .* could not be resolved");
-
-# We run with different binaries for normal and --embedded-server
-#
-# If this test fails with "command "$MYSQL_CLIENT_TEST" failed",
-# you should either run mysql_client_test separartely against a running
-# server or run mysql-test-run --debug mysql_client_test and check
-# var/log/mysql_client_test.trace
-
---exec echo "$MYSQL_CLIENT_TEST --non-blocking-api" > $MYSQLTEST_VARDIR/log/mysql_client_test.out.log 2>&1
---exec $MYSQL_CLIENT_TEST --non-blocking-api --getopt-ll-test=25600M >> $MYSQLTEST_VARDIR/log/mysql_client_test.out.log 2>&1
-
-# End of 4.1 tests
-echo ok;
-
-SET @@global.general_log= @old_general_log;
-SET @@global.slow_query_log= @old_slow_query_log;