Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
f8e08f38
Commit
f8e08f38
authored
Feb 10, 2006
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
9663f6cb
d23d02be
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
7 deletions
+23
-7
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+17
-6
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+6
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
f8e08f38
...
...
@@ -496,14 +496,25 @@ sub command_line_setup () {
my
$im_mysqld1_port
=
9312
;
my
$im_mysqld2_port
=
9314
;
#
# To make it easier for different devs to work on the same host,
# an environment variable can be used to control all ports. A small
# number is to be used, 0 - 16 or similar.
#
# Note the MASTER_MYPORT has to be set the same in all 4.x and 5.x
# versions of this script, else a 4.0 test run might conflict with a
# 5.1 test run, even if different MTR_BUILD_THREAD is used. This means
# all port numbers might not be used in this version of the script.
#
if
(
$ENV
{'
MTR_BUILD_THREAD
'}
)
{
$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
;
# Up to two masters, up to three slaves
$opt_master_myport
=
$ENV
{'
MTR_BUILD_THREAD
'}
*
10
+
10000
;
# and 1
$opt_slave_myport
=
$opt_master_myport
+
2
;
$opt_ndbcluster_port
=
$opt_master_myport
+
3
;
# and 4 5
$im_port
=
$opt_master_myport
+
6
;
$im_mysqld1_port
=
$opt_master_myport
+
7
;
$im_mysqld2_port
=
$opt_master_myport
+
8
;
}
# Read the command line
...
...
mysql-test/mysql-test-run.sh
View file @
f8e08f38
...
...
@@ -244,8 +244,13 @@ MYSQL_MANAGER_USER=root
# an environment variable can be used to control all ports. A small
# number is to be used, 0 - 16 or similar.
#
# Note the MASTER_MYPORT has to be set the same in all 4.x and 5.x
# versions of this script, else a 4.0 test run might conflict with a
# 5.1 test run, even if different MTR_BUILD_THREAD is used. This means
# all port numbers might not be used in this version of the script.
#
if
[
-n
"
$MTR_BUILD_THREAD
"
]
;
then
MASTER_MYPORT
=
`
expr
$MTR_BUILD_THREAD
'*'
5
+ 10000
`
MASTER_MYPORT
=
`
expr
$MTR_BUILD_THREAD
'*'
10
+ 10000
`
MYSQL_MANAGER_PORT
=
`
expr
$MASTER_MYPORT
+ 2
`
SLAVE_MYPORT
=
`
expr
$MASTER_MYPORT
+ 3
`
NDBCLUSTER_PORT
=
`
expr
$MASTER_MYPORT
+ 4
`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment