diff options
author | unknown <tsmith/tim@siva.hindu.god> | 2006-12-08 16:39:58 -0700 |
---|---|---|
committer | unknown <tsmith/tim@siva.hindu.god> | 2006-12-08 16:39:58 -0700 |
commit | b9bb3131d454f28f0eb4cad925ff8665768ae1d1 (patch) | |
tree | 5919c4a805cda52150a6da6814c72101f8c5eaef /Makefile.am | |
parent | 50b1b0dadb75ff9816dc8d680b207452bb1d0c2a (diff) | |
parent | fdf1a6332c35c44d841e1bd597eba9853116ed62 (diff) | |
download | mariadb-git-b9bb3131d454f28f0eb4cad925ff8665768ae1d1.tar.gz |
Merge siva.hindu.god:/usr/home/tim/m/bk/tmp/fix-Makefile-perl/50
into siva.hindu.god:/usr/home/tim/m/bk/tmp/fix-Makefile-perl/51
include/mysql.h:
Auto merged
include/mysql_h.ic:
Auto merged
mysql-test/r/func_in.result:
Auto merged
mysql-test/t/func_in.test:
Auto merged
sql/opt_range.cc:
Auto merged
sql/sql_class.h:
Auto merged
Makefile.am:
Manual merge
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 81656d67f74..6f260fee8e4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -103,8 +103,10 @@ dist-hook: tags: support-files/build-tags -.PHONY: init-db bin-dist test test-full test-ps test-nr \ - test-ns test-pr test-unit +.PHONY: init-db bin-dist \ + 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 # Target 'test' will run the regression test suite using the built server. # @@ -119,23 +121,23 @@ test-unit: test-ps: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --ps-protocol --mysqld=--binlog-format=mixed + @PERL@ ./mysql-test-run.pl $(force) --ps-protocol --mysqld=--binlog-format=mixed test-nr: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --mysqld=--binlog-format=row + @PERL@ ./mysql-test-run.pl $(force) --mysqld=--binlog-format=row test-pr: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --ps-protocol --mysqld=--binlog-format=row + @PERL@ ./mysql-test-run.pl $(force) --ps-protocol --mysqld=--binlog-format=row test-ns: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --mysqld=--binlog-format=mixed + @PERL@ ./mysql-test-run.pl $(force) --mysqld=--binlog-format=mixed test-binlog-statement: cd mysql-test ; \ - ./mysql-test-run.pl $(force) --mysqld=--binlog-format=statement + @PERL@ ./mysql-test-run.pl $(force) --mysqld=--binlog-format=statement test: test-unit test-ns test-pr |