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
770a4f7c
Commit
770a4f7c
authored
Nov 17, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#24274 option "--big-test" of mysql-test-run.pl does not work anymore
parent
b3a5d619
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
9 deletions
+15
-9
mysql-test/lib/mtr_cases.pl
mysql-test/lib/mtr_cases.pl
+4
-0
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+11
-9
No files found.
mysql-test/lib/mtr_cases.pl
View file @
770a4f7c
...
...
@@ -593,6 +593,10 @@ sub mtr_options_from_test_file($$) {
while
(
my
$line
=
<
$F
>
)
{
# Skip line if it start's with #
next
if
(
$line
=~
/^#/
);
# Match this line against tag in "tags" array
foreach
my
$tag
(
@tags
)
{
...
...
mysql-test/mysql-test-run.pl
View file @
770a4f7c
...
...
@@ -163,7 +163,7 @@ our $exe_libtool;
our
$opt_bench
=
0
;
our
$opt_small_bench
=
0
;
our
$opt_big_test
=
0
;
# Send --big-test to mysqltest
our
$opt_big_test
=
0
;
our
@opt_extra_mysqld_opt
;
...
...
@@ -912,6 +912,14 @@ sub command_line_setup () {
$opt_sleep_time_after_restart
=
$opt_sleep
;
}
# --------------------------------------------------------------------------
# Big test flags
# --------------------------------------------------------------------------
if
(
$opt_big_test
)
{
$ENV
{'
BIG_TEST
'}
=
1
;
}
# --------------------------------------------------------------------------
# Gcov flag
# --------------------------------------------------------------------------
...
...
@@ -4269,11 +4277,6 @@ sub run_mysqltest ($) {
mtr_add_arg
(
$args
,
"
--timer-file=%s/log/timer
",
$opt_vardir
);
}
if
(
$opt_big_test
)
{
mtr_add_arg
(
$args
,
"
--big-test
");
}
if
(
$opt_compress
)
{
mtr_add_arg
(
$args
,
"
--compress
");
...
...
@@ -4662,9 +4665,8 @@ Options to control what test suites or cases to run
skip-rpl Skip the replication test cases.
skip-im Don't start IM, and skip the IM test cases
skip-test=PREFIX Skip test cases which name are prefixed with PREFIX
big-test Pass "--big-test" to mysqltest which will set the
environment variable BIG_TEST, which can be checked
from test cases.
big-test Set the environment variable BIG_TEST, which can be
checked from test cases.
Options that specify ports
...
...
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