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
f6b8032a
Commit
f6b8032a
authored
Sep 21, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't add all args to mysqltest to MYSQL_TEST env var
parent
a26e1b72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+12
-8
No files found.
mysql-test/mysql-test-run.pl
View file @
f6b8032a
...
...
@@ -2157,11 +2157,6 @@ sub run_mysqltest ($) {
mtr_add_arg
(
$args
,
"
--big-test
");
}
if
(
$opt_record
)
{
mtr_add_arg
(
$args
,
"
--record
");
}
if
(
$opt_compress
)
{
mtr_add_arg
(
$args
,
"
--compress
");
...
...
@@ -2187,9 +2182,6 @@ sub run_mysqltest ($) {
$glob_mysql_test_dir
);
}
mtr_add_arg
(
$args
,
"
-R
");
mtr_add_arg
(
$args
,
$tinfo
->
{'
result_file
'});
# ----------------------------------------------------------------------
# If embedded server, we create server args to give mysqltest to pass on
# ----------------------------------------------------------------------
...
...
@@ -2204,6 +2196,18 @@ sub run_mysqltest ($) {
# ----------------------------------------------------------------------
$ENV
{'
MYSQL_TEST
'}
=
"
$exe_mysqltest
"
.
join
("
",
@$args
);
# ----------------------------------------------------------------------
# Add args that should not go into the MYSQL_TEST environment var
# ----------------------------------------------------------------------
mtr_add_arg
(
$args
,
"
-R
");
mtr_add_arg
(
$args
,
$tinfo
->
{'
result_file
'});
if
(
$opt_record
)
{
mtr_add_arg
(
$args
,
"
--record
");
}
return
mtr_run_test
(
$exe
,
$args
,
$tinfo
->
{'
path
'},"",
$path_timefile
,"");
}
...
...
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