diff options
author | unknown <kent@mysql.com> | 2005-02-17 02:59:39 +0100 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-02-17 02:59:39 +0100 |
commit | 3f808996794b5ed83f646fd08946a5499bbb665c (patch) | |
tree | fb244a988170034eb7d7b6625ac8117dc299b90f /mysql-test/t/ps_1general.test | |
parent | bc22f79f12e74d8c8e9460f2b237c1310c6350ee (diff) | |
download | mariadb-git-3f808996794b5ed83f646fd08946a5499bbb665c.tar.gz |
Windows compatibility changes of the 'rpl_delete_all',
'ps_1general' and 'fulltext_cache' test cases.
mysql-test/r/fulltext_cache.result:
To pass on Windows, round to less digits
mysql-test/t/fulltext_cache.test:
To pass on Windows, round to less digits
mysql-test/t/ps_1general.test:
To pass on Windows, change \\ to / in result
mysql-test/t/rpl_delete_all.test:
To pass on Windows, change \\ to / in result
mysql-test/mysql-test-run.pl:
Pass mysqld --console to catch output on Windows
mysql-test/lib/mtr_process.pl:
Check error from exec() to avoid becoming a fork() bomb
Diffstat (limited to 'mysql-test/t/ps_1general.test')
-rw-r--r-- | mysql-test/t/ps_1general.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/ps_1general.test b/mysql-test/t/ps_1general.test index 5450512b959..4ab81dfcac5 100644 --- a/mysql-test/t/ps_1general.test +++ b/mysql-test/t/ps_1general.test @@ -599,6 +599,7 @@ drop table t2; prepare stmt1 from ' rename table t5 to t6, t7 to t8 ' ; create table t5 (a int) ; # rename must fail, t7 does not exist +--replace_result \\ / --error 1017 execute stmt1 ; create table t7 (a int) ; |