diff options
author | unknown <kent@mysql.com> | 2005-05-15 06:59:34 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-05-15 06:59:34 +0200 |
commit | f4425b50e157cf35f89ed22043b8ffd5089abdae (patch) | |
tree | bb0939849359f9bbca5a05c75aecacb515b617a5 /client | |
parent | fc80e4c121926b9eec6bf03dfeba634270a308e5 (diff) | |
download | mariadb-git-f4425b50e157cf35f89ed22043b8ffd5089abdae.tar.gz |
mysqltest.c, mysql-test-run.sh:
Not to conflict with Windows return code 2 for "not found", use 62 for "skip"
mysql-test-run.sh, suppress.purify:
Use Purify suppress file
mysql-test/suppress.purify:
Purify suppress file
mysql-test/mysql-test-run.sh:
Use Purify suppress file
Not to conflict with Windows return code 2 for "not found", use 62 for "skip"
client/mysqltest.c:
Not to conflict with Windows return code 2 for "not found", use 62 for "skip"
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 3eab182a74d..362b6a0b1df 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -572,7 +572,7 @@ static void abort_not_supported_test() printf("skipped\n"); free_used_memory(); my_end(MY_CHECK_ERROR); - exit(2); + exit(62); } static void verbose_msg(const char* fmt, ...) |