diff options
author | mleich@three.local.lan <> | 2007-07-13 18:32:22 +0200 |
---|---|---|
committer | mleich@three.local.lan <> | 2007-07-13 18:32:22 +0200 |
commit | f1a6ad4dde0be4b0f45a63bdcd66c34fc15df704 (patch) | |
tree | d14b80db914beff78a30b3073aaea19e5409d2c0 /Makefile.am | |
parent | dda462244d8764ee987bde5fc52231ee8323eeb4 (diff) | |
download | mariadb-git-f1a6ad4dde0be4b0f45a63bdcd66c34fc15df704.tar.gz |
Additional tests checking for symptoms observed within
Bug28309 First insert violates unique constraint - was "memory" table empty ?
---
Add missing phony targets
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 88e0f949657..18477afb398 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,7 +58,8 @@ tags: test test-force test-full test-force-full test-force-mem \ test-pl test-force-pl test-full-pl test-force-full-pl test-force-pl-mem \ test-unit test-ps test-nr test-pr test-ns test-binlog-statement \ - test-ext-funcs test-ext-rpl test-ext-partitions test-ext \ + test-ext-funcs test-ext-rpl test-ext-partitions test-ext-jp \ + test-ext-stress test-ext \ test-fast test-fast-cursor test-fast-view test-fast-prepare \ test-full-qa @@ -144,6 +145,8 @@ test-bt: cd mysql-test ; MTR_BUILD_THREAD=auto \ @PERL@ ./mysql-test-run.pl --comment=NIST+ps --force --suite=nist --ps-protocol ; \ fi + -cd mysql-test ; MTR_BUILD_THREAD=auto \ + @PERL@ ./mysql-test-run.pl --force --comment=stress --suite=stress # Re-enable the "rowlock" suite when bug#28685 is fixed # -cd mysql-test ; MTR_BUILD_THREAD=auto \ @@ -182,12 +185,17 @@ test-ext-jp: cd mysql-test ; \ @PERL@ ./mysql-test-run.pl --force --suite=jp -test-ext: test-ext-funcs test-ext-rpl test-ext-partitions test-ext-jp +test-ext-stress: + cd mysql-test ; \ + @PERL@ ./mysql-test-run.pl --force --big-test --suite=stress + +test-ext: test-ext-funcs test-ext-rpl test-ext-partitions test-ext-jp test-ext-stress test-fast: cd mysql-test ; \ @PERL@ ./mysql-test-run.pl $(subset) --force --skip-ndb --skip-innodb --skip-im --skip-rpl ; \ - @PERL@ ./mysql-test-run.pl $(subset) --force --suite=funcs_1 --do-test=myisam + @PERL@ ./mysql-test-run.pl $(subset) --force --suite=funcs_1 --do-test=myisam ; \ + @PERL@ ./mysql-test-run.pl $(subset) --force --suite=stress --do-test=ddl_myisam test-fast-view: $(MAKE) subset=--view-protocol test-fast |