diff options
author | Patrick Crews <patrick.crews@sun.com> | 2008-09-20 02:21:28 -0400 |
---|---|---|
committer | Patrick Crews <patrick.crews@sun.com> | 2008-09-20 02:21:28 -0400 |
commit | 2a419a562704c276127991e0c416c8d2745657a7 (patch) | |
tree | fd73369b0d9c0c567fcc1191a96a9ef6c799568b /mysql-test/t/symlink.test | |
parent | 47ba1e8196f79ada6f71d5dd311f7d13db9fcf58 (diff) | |
download | mariadb-git-2a419a562704c276127991e0c416c8d2745657a7.tar.gz |
Bug#38311 Some tests use 'rm' which is not portable
Substituted use of MTR's remove_file function in the tests
Started with 5.0 tree and will clean up any offenders discovered during upmerge.
Diffstat (limited to 'mysql-test/t/symlink.test')
-rw-r--r-- | mysql-test/t/symlink.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/symlink.test b/mysql-test/t/symlink.test index 9478abe1224..8ce1bca1ec1 100644 --- a/mysql-test/t/symlink.test +++ b/mysql-test/t/symlink.test @@ -185,7 +185,8 @@ drop table t1; # # Protect ourselves from data left in tmp/ by a previos possibly failed # test ---system rm -f $MYSQLTEST_VARDIR/tmp/t1.* +--error 0,1 +--remove_file $MYSQLTEST_VARDIR/tmp/t1.* --disable_query_log eval prepare stmt from "create table t1 (c char(10)) data directory='$MYSQLTEST_VARDIR/tmp'"; --enable_query_log |