diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2011-03-15 16:06:59 +0100 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2011-03-15 16:06:59 +0100 |
commit | ebba068d26115f6d65ca12163bb771b56003edd5 (patch) | |
tree | 6f427ec75ede381c1c2a586afd6c45b07826c24d /mysql-test/t | |
parent | 782b44bc7f663aff607a1520a981d7e1aedbc188 (diff) | |
download | mariadb-git-ebba068d26115f6d65ca12163bb771b56003edd5.tar.gz |
Bug #11762804 55442: MYSQLD DEBUG CRASHES WHILE RUNNING MYISAM_CRASH_BEFORE_FLUSH_KEYS.TEST
This will cause affected tests to skip if CrashReporter would popup
Found 5 tests that needed modification
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/crash_commit_before.test | 2 | ||||
-rw-r--r-- | mysql-test/t/myisam_crash_before_flush_keys.test | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/t/crash_commit_before.test b/mysql-test/t/crash_commit_before.test index e3dba58d4df..6e36d2345e1 100644 --- a/mysql-test/t/crash_commit_before.test +++ b/mysql-test/t/crash_commit_before.test @@ -1,6 +1,8 @@ -- source include/not_embedded.inc # Don't test this under valgrind, memory leaks will occur --source include/not_valgrind.inc +# Avoid CrashReporter popup on Mac +--source include/not_crashrep.inc # Binary must be compiled with debug for crash to occur --source include/have_debug.inc diff --git a/mysql-test/t/myisam_crash_before_flush_keys.test b/mysql-test/t/myisam_crash_before_flush_keys.test index 1860ddd27e3..ea41b3559ca 100644 --- a/mysql-test/t/myisam_crash_before_flush_keys.test +++ b/mysql-test/t/myisam_crash_before_flush_keys.test @@ -8,6 +8,9 @@ --echo # Binary must be compiled with debug for crash to occur --source include/have_debug.inc +# Avoid CrashReporter popup on Mac +--source include/not_crashrep.inc + let $MYSQLD_DATADIR= `select @@datadir`; SET GLOBAL delay_key_write=ALL; CREATE TABLE t1(a INT, |