diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-02-19 09:06:33 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-02-19 09:06:33 +0100 |
commit | ddfcec2cf9b9bd521623617848490cd28050966e (patch) | |
tree | b57faf940f7006448ce4f6567d617b3373653524 /Makefile.am | |
parent | 2c77c9ea25d8d01d8e7d6d35f1fdd2e4809be865 (diff) | |
download | mariadb-git-ddfcec2cf9b9bd521623617848490cd28050966e.tar.gz |
make force really force
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 17d2e2ce891..b59e25b8234 100644 --- a/Makefile.am +++ b/Makefile.am @@ -140,14 +140,14 @@ smoke: test-full: test test-nr test-ps test-force: - $(MAKE) force=--force test + $(MAKE) -k force=--force test test-force-full: - $(MAKE) force=--force test-full + $(MAKE) -k force=--force test-full #used by autopush.pl to run memory based tests test-force-mem: - $(MAKE) force=--force mem=--mem test + $(MAKE) -k force=--force mem=--mem test test-bt: -cd mysql-test ; MTR_BUILD_THREAD=auto \ @@ -261,7 +261,7 @@ test-fast-prepare: $(MAKE) subset=--ps-protocol test-fast test-full-qa: - $(MAKE) force=--force test-pr \ + $(MAKE) -k force=--force test-pr \ test-binlog-statement test-ext test-fast-view \ test-fast-cursor test-unit |