~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/t/mysql_client_test.test

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This test should work in embedded server after we fix mysqltest
 
2
-- source include/not_embedded.inc
 
3
 
 
4
SET @old_general_log= @@global.general_log;
 
5
 
 
6
# We run with different binaries for normal and --embedded-server
 
7
#
 
8
# If this test fails with "command "$MYSQL_CLIENT_TEST" failed",
 
9
# you should either run mysql_client_test separartely against a running
 
10
# server or run mysql-test-run --debug mysql_client_test and check
 
11
# var/log/mysql_client_test.trace
 
12
 
 
13
--exec echo "$MYSQL_CLIENT_TEST" > $MYSQLTEST_VARDIR/log/mysql_client_test.out.log 2>&1
 
14
--exec $MYSQL_CLIENT_TEST --getopt-ll-test=25600M >> $MYSQLTEST_VARDIR/log/mysql_client_test.out.log 2>&1
 
15
 
 
16
# End of 4.1 tests
 
17
echo ok;
 
18
 
 
19
SET @@global.general_log= @old_general_log;