summaryrefslogtreecommitdiffstats
path: root/mysql-test/main/mysql_not_windows.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/mysql_not_windows.test')
-rw-r--r--mysql-test/main/mysql_not_windows.test31
1 files changed, 31 insertions, 0 deletions
diff --git a/mysql-test/main/mysql_not_windows.test b/mysql-test/main/mysql_not_windows.test
new file mode 100644
index 00000000..816160c4
--- /dev/null
+++ b/mysql-test/main/mysql_not_windows.test
@@ -0,0 +1,31 @@
+-- source include/not_windows.inc
+# This test should work in embedded server after we fix mysqltest
+-- source include/not_embedded.inc
+#
+# Testing the MySQL command line client(mysql)
+#
+
+#
+# Bug #54466 client 5.5 built from source lacks "pager" support
+#
+--echo Bug #54466 client 5.5 built from source lacks "pager" support
+--exec $MYSQL --pager test -e "select 1 as a"
+
+--echo
+--echo End of tests
+
+# Multi-line exec
+exec $MYSQL \
+ test -e "select 1";
+exec $MYSQL test -e "select
+ 2";
+let $query = select 3
+ as X;
+exec $MYSQL test -e "$query";
+
+# Not ran on Windows, since non-ASCII does not work on command line.
+# (MDEV-16220)
+--error 1
+--exec $MYSQL --default-character-set=utf8 -e "select 1" "test😁 " 2>&1
+--error 1
+--exec $MYSQL --default-character-set=binary -e "select 1" "test😁 " 2>&1