~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/outfile.test

  • Committer: patrick crews
  • Date: 2010-10-07 21:20:57 UTC
  • mto: (1819.2.4 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1825.
  • Revision ID: gleebix@gmail.com-20101007212057-l1aq2xq8vfidi6cv
Adjustments to tests to deal with the name changes.  Also fixed passed/failed reporting post-run in test-run.pl

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
eval select * into dumpfile "../../tmp/outfile-test.3" from t1;
40
40
enable_query_log;
41
41
select load_file(concat(@tmpdir,"/outfile-test.not-exist"));
42
 
--remove_file $MYSQLTEST_VARDIR/tmp/outfile-test.1
43
 
--remove_file $MYSQLTEST_VARDIR/tmp/outfile-test.2
44
 
--remove_file $MYSQLTEST_VARDIR/tmp/outfile-test.3
 
42
--remove_file $DRIZZLETEST_VARDIR/tmp/outfile-test.1
 
43
--remove_file $DRIZZLETEST_VARDIR/tmp/outfile-test.2
 
44
--remove_file $DRIZZLETEST_VARDIR/tmp/outfile-test.3
45
45
drop table t1;
46
46
 
47
47
# Bug#8191
49
49
eval select 1 into outfile "../../tmp/outfile-test.4";
50
50
enable_query_log;
51
51
select load_file(concat(@tmpdir,"/outfile-test.4"));
52
 
--remove_file $MYSQLTEST_VARDIR/tmp/outfile-test.4
 
52
--remove_file $DRIZZLETEST_VARDIR/tmp/outfile-test.4
53
53
 
54
54
#
55
55
# Bug #5382: 'explain select into outfile' crashes the server
73
73
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
74
74
FROM data_dictionary.schemas LIMIT 0, 5;
75
75
# enable_query_log;
76
 
--remove_file $MYSQLTEST_VARDIR/tmp/outfile-test.4
 
76
--remove_file $DRIZZLETEST_VARDIR/tmp/outfile-test.4
77
77
 
78
78
use data_dictionary;
79
79
# disable_query_log;
81
81
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
82
82
FROM schemas LIMIT 0, 5;
83
83
enable_query_log;
84
 
--remove_file $MYSQLTEST_VARDIR/tmp/outfile-test.5
 
84
--remove_file $DRIZZLETEST_VARDIR/tmp/outfile-test.5
85
85
use test;
86
86
 
87
87
#