2006-02-24 17:34:15 +01:00
|
|
|
# This test should work in embedded server after we fix mysqltest
|
|
|
|
-- source include/not_embedded.inc
|
|
|
|
|
2008-11-13 20:19:00 +01:00
|
|
|
SET @old_general_log= @@global.general_log;
|
2010-07-30 14:17:10 +02:00
|
|
|
SET @old_slow_query_log= @@global.slow_query_log;
|
2008-11-13 20:19:00 +01:00
|
|
|
|
2005-01-24 16:56:17 +01:00
|
|
|
# We run with different binaries for normal and --embedded-server
|
2005-02-22 11:51:23 +01:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2007-09-28 21:30:54 +02:00
|
|
|
--exec echo "$MYSQL_CLIENT_TEST" > $MYSQLTEST_VARDIR/log/mysql_client_test.out.log 2>&1
|
|
|
|
--exec $MYSQL_CLIENT_TEST --getopt-ll-test=25600M >> $MYSQLTEST_VARDIR/log/mysql_client_test.out.log 2>&1
|
2005-07-28 02:22:47 +02:00
|
|
|
|
|
|
|
# End of 4.1 tests
|
2005-12-06 21:28:13 +01:00
|
|
|
echo ok;
|
|
|
|
|
2008-11-13 20:19:00 +01:00
|
|
|
SET @@global.general_log= @old_general_log;
|
2010-07-30 14:17:10 +02:00
|
|
|
SET @@global.slow_query_log= @old_slow_query_log;
|