diff options
author | Georgi Kodinov <joro@sun.com> | 2009-11-27 15:46:54 +0200 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2009-11-27 15:46:54 +0200 |
commit | 514d33c866f598c506d9dcf067ce2be164167fe9 (patch) | |
tree | e307dfd22eb295c8a0ff613a71b2b74ac4c7745b /mysql-test/t/mysql.test | |
parent | 2ac344ecf662f6b5d901825850e3b5568ab91174 (diff) | |
download | mariadb-git-514d33c866f598c506d9dcf067ce2be164167fe9.tar.gz |
Addendum to Bug #27884: fixed test incompatibility on windows.
Diffstat (limited to 'mysql-test/t/mysql.test')
-rw-r--r-- | mysql-test/t/mysql.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mysql-test/t/mysql.test b/mysql-test/t/mysql.test index 0cdb0ddb653..dcdf3eeaeb6 100644 --- a/mysql-test/t/mysql.test +++ b/mysql-test/t/mysql.test @@ -359,7 +359,10 @@ remove_file $MYSQLTEST_VARDIR/tmp/bug31060.sql; # # Bug #27884: mysql --html does not quote HTML special characters in output # ---exec $MYSQL --html test -e "select '< & >' as \`<\`" +--write_file $MYSQLTEST_VARDIR/tmp/bug27884.sql +SELECT '< & >' AS `<`; +EOF +--exec $MYSQL --html test < $MYSQLTEST_VARDIR/tmp/bug27884.sql --echo --echo End of 5.0 tests |