diff options
author | unknown <kent@mysql.com> | 2005-08-28 20:03:03 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-08-28 20:03:03 +0200 |
commit | 8dd3a7d9a7cc9320478774ae8be0e66dfc73acb0 (patch) | |
tree | 1818c39a8eb9c298f913db3b9ff5bf5ec1f42629 /Makefile.am | |
parent | 56b8fc52cfe81b22031ece94475d9a6f3fa663c2 (diff) | |
parent | f658a7a7c3616c5edec3b1e0a79427ca98b20fdb (diff) | |
download | mariadb-git-8dd3a7d9a7cc9320478774ae8be0e66dfc73acb0.tar.gz |
Merge mysql.com:/Users/kent/mysql/bk/mysql-4.0
into mysql.com:/Users/kent/mysql/bk/mysql-4.1
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 96f3561e31c..59a977a2633 100644 --- a/Makefile.am +++ b/Makefile.am @@ -97,7 +97,22 @@ tags: support-files/build-tags .PHONY: init-db bin-dist -# Test installation +# Test installation. Ports are configurable from the environment. + +MYSQL_TEST_MANAGER_PORT = 9305 +MYSQL_TEST_MASTER_PORT = 9306 +MYSQL_TEST_SLAVE_PORT = 9308 +MYSQL_TEST_NDB_PORT = 9350 test: - cd mysql-test; perl mysql-test-run.pl && perl mysql-test-run.pl --ps-protocol + cd mysql-test ; \ + ./mysql-test-run.pl \ + --manager-port=$(MYSQL_TEST_MANAGER_PORT) \ + --master_port=$(MYSQL_TEST_MASTER_PORT) \ + --slave_port=$(MYSQL_TEST_SLAVE_PORT) \ + --ndbcluster_port=$(MYSQL_TEST_NDB_PORT) && \ + ./mysql-test-run.pl --ps-protocol \ + --manager-port=$(MYSQL_TEST_MANAGER_PORT) \ + --master_port=$(MYSQL_TEST_MASTER_PORT) \ + --slave_port=$(MYSQL_TEST_SLAVE_PORT) \ + --ndbcluster_port=$(MYSQL_TEST_NDB_PORT) |