diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2010-10-19 13:56:30 +0200 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2010-10-19 13:56:30 +0200 |
commit | 84c57a5e278bbaa976c8d2961fd554e078c9b714 (patch) | |
tree | c18a20cff24b3981a5d1b0cfba0bf557c12c8cbd /mysql-test/t/mysqltest.test | |
parent | 8a67fc8c8246f5d7290b7e572fa092cf0cadb25d (diff) | |
download | mariadb-git-84c57a5e278bbaa976c8d2961fd554e078c9b714.tar.gz |
Bug #52828 Tests that use perl fail when perl is not in path
main.mysqltest skipped on Windows because a perl intentionally does exit(1)
Use exit(2), as exit(1) on Windows is indistinguishable from failing to
execute perl.
Diffstat (limited to 'mysql-test/t/mysqltest.test')
-rw-r--r-- | mysql-test/t/mysqltest.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/mysqltest.test b/mysql-test/t/mysqltest.test index caadce44dcf..d6bdbc2b3c1 100644 --- a/mysql-test/t/mysqltest.test +++ b/mysql-test/t/mysqltest.test @@ -331,7 +331,7 @@ eval select $mysql_errno as "after_!errno_masked_error" ; --exec illegal_command --cat_file does_not_exist --perl - exit(1); + exit(2); EOF # ---------------------------------------------------------------------------- |