~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/check-testcase.test

  • Committer: Jay Pipes
  • Date: 2008-07-17 18:48:58 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717184858-2mbouxl8xi41gcge
Removed DBUG from CSV and Blackhole storage engines

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# This test is executed twice for each test case if mysql-test-run is passed
3
 
# the flag --check-testcase.
4
 
# Before every testcase it's run with mysqltest in record mode and will
5
 
# thus produce an output file
6
 
# that can be compared to output from after the tescase.
7
 
# In that way it's possible to check that a testcase does not have
8
 
# any unwanted side affects.
9
 
#
10
 
 
11
 
#
12
 
# Dump all global variables
13
 
#
14
 
select * from data_dictionary.GLOBAL_VARIABLES where VARIABLE_NAME != 'timestamp';
15
 
 
16
 
#
17
 
# Dump all databases
18
 
#
19
 
show databases;
20
 
 
21
 
#
22
 
# Dump the "test" database, all it's tables and their data
23
 
#
24
 
--exec $DRIZZLE_DUMP --skip-comments test
25
 
 
26