diff options
author | unknown <kent@mysql.com> | 2005-11-01 02:19:06 +0100 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-11-01 02:19:06 +0100 |
commit | fe3d5732f73207b947403d2a5a605996ca138bd2 (patch) | |
tree | eda8ece8fb5f02c916c001297ddeb607952901ca /mysql-test | |
parent | 11632315c8493725bc80b160dfd3036f15b5a2cf (diff) | |
download | mariadb-git-fe3d5732f73207b947403d2a5a605996ca138bd2.tar.gz |
mysql-test-run.pl:
Make IM ports change with MTR_BUILD_THREAD
mysql-test/mysql-test-run.pl:
Make IM ports change with MTR_BUILD_THREAD
Diffstat (limited to 'mysql-test')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 08ff5a77fac..ea4fa1082db 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -481,6 +481,9 @@ sub command_line_setup () { $opt_master_myport= $ENV{'MTR_BUILD_THREAD'} * 40 + 8120; $opt_slave_myport= $opt_master_myport + 16; $opt_ndbcluster_port= $opt_master_myport + 24; + $im_port= $opt_master_myport + 10; + $im_mysqld1_port= $opt_master_myport + 12; + $im_mysqld2_port= $opt_master_myport + 14; } # Read the command line @@ -1070,6 +1073,8 @@ sub environment_setup () { print "Using MASTER_MYPORT1 = $ENV{MASTER_MYPORT1}\n"; print "Using SLAVE_MYPORT = $ENV{SLAVE_MYPORT}\n"; print "Using NDBCLUSTER_PORT = $opt_ndbcluster_port\n"; + print "Using IM_MYSQLD1_PORT = $ENV{'IM_MYSQLD1_PORT'}\n"; + print "Using IM_MYSQLD2_PORT = $ENV{'IM_MYSQLD2_PORT'}\n"; } |