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
727afed6
Commit
727afed6
authored
Jan 10, 2008
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --repeat and --retry
parent
da6073b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
7 deletions
+58
-7
mysql-test/lib/mtr_report.pl
mysql-test/lib/mtr_report.pl
+6
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+52
-6
No files found.
mysql-test/lib/mtr_report.pl
View file @
727afed6
...
@@ -92,7 +92,10 @@ sub mtr_report_test_passed ($$) {
...
@@ -92,7 +92,10 @@ sub mtr_report_test_passed ($$) {
$tot_real_time
+=
(
$timer
/
1000
);
$tot_real_time
+=
(
$timer
/
1000
);
$timer
=
sprintf
"
%12s
",
$timer
;
$timer
=
sprintf
"
%12s
",
$timer
;
}
}
$tinfo
->
{'
result
'}
=
'
MTR_RES_PASSED
';
# Set as passed unless already set
if
(
not
defined
$tinfo
->
{'
result
'}
){
$tinfo
->
{'
result
'}
=
'
MTR_RES_PASSED
';
}
mtr_report
("
[ pass ]
$timer
");
mtr_report
("
[ pass ]
$timer
");
}
}
...
@@ -102,6 +105,8 @@ sub mtr_report_test_failed ($$) {
...
@@ -102,6 +105,8 @@ sub mtr_report_test_failed ($$) {
mtr_report_test_name
(
$tinfo
);
mtr_report_test_name
(
$tinfo
);
$tinfo
->
{'
result
'}
=
'
MTR_RES_FAILED
';
$tinfo
->
{'
result
'}
=
'
MTR_RES_FAILED
';
my
$test_failures
=
$tinfo
->
{'
failures
'}
||
0
;
$tinfo
->
{'
failures
'}
=
$test_failures
+
1
;
if
(
defined
$tinfo
->
{'
timeout
'}
)
if
(
defined
$tinfo
->
{'
timeout
'}
)
{
{
mtr_report
("
[ fail ] timeout
");
mtr_report
("
[ fail ] timeout
");
...
...
mysql-test/mysql-test-run.pl
View file @
727afed6
...
@@ -161,6 +161,9 @@ my $opt_start_timeout = 30; # 30 seconds
...
@@ -161,6 +161,9 @@ my $opt_start_timeout = 30; # 30 seconds
my
$opt_start
;
my
$opt_start
;
my
$opt_start_dirty
;
my
$opt_start_dirty
;
my
$opt_repeat
=
1
;
my
$opt_retry
=
1
;
my
$opt_retry_failure
=
2
;
my
$opt_strace_client
;
my
$opt_strace_client
;
...
@@ -374,8 +377,9 @@ sub command_line_setup {
...
@@ -374,8 +377,9 @@ sub command_line_setup {
'
start-dirty
'
=>
\
$opt_start_dirty
,
'
start-dirty
'
=>
\
$opt_start_dirty
,
'
start
'
=>
\
$opt_start
,
'
start
'
=>
\
$opt_start
,
'
print-testcases
'
=>
\&
collect_option
,
'
print-testcases
'
=>
\&
collect_option
,
# TODO 'repeat'
'
repeat=i
'
=>
\
$opt_repeat
,
# TODO 'retry'
'
retry=i
'
=>
\
$opt_retry
,
'
retry-failure=i
'
=>
\
$opt_retry_failure
,
'
timer!
'
=>
\
$opt_timer
,
'
timer!
'
=>
\
$opt_timer
,
'
user=s
'
=>
\
$opt_user
,
'
user=s
'
=>
\
$opt_user
,
'
testcase-timeout=i
'
=>
\
$opt_testcase_timeout
,
'
testcase-timeout=i
'
=>
\
$opt_testcase_timeout
,
...
@@ -1742,7 +1746,39 @@ sub run_tests {
...
@@ -1742,7 +1746,39 @@ sub run_tests {
next
;
next
;
}
}
run_testcase
(
$tinfo
);
for
my
$repeat
(
1
..
$opt_repeat
){
if
(
run_testcase
(
$tinfo
))
{
# Testcase failed, enter retry mode
my
$retries
=
1
;
while
(
$retries
<=
$opt_retry
){
mtr_report
("
\n
Retrying, attempt(
$retries
/
$opt_retry
)...
\n
");
if
(
run_testcase
(
$tinfo
)
<=
0
)
{
# Testcase suceeded
my
$test_has_failed
=
$tinfo
->
{
failures
}
||
0
;
if
(
!
$test_has_failed
){
last
;
}
}
else
{
# Testcase failed
# Limit number of test failures
my
$failures
=
$tinfo
->
{
failures
};
if
(
$opt_retry
>
1
and
$failures
>=
$opt_retry_failure
){
mtr_report
("
Test has failed
$failures
times, no more retries!
\n
");
last
;
}
}
$retries
++
;
}
}
}
}
}
# Kill the test suite timer
# Kill the test suite timer
$suite_timeout_proc
->
kill
();
$suite_timeout_proc
->
kill
();
...
@@ -2184,6 +2220,11 @@ my %old_env;
...
@@ -2184,6 +2220,11 @@ my %old_env;
#
#
# Run a single test case
# Run a single test case
#
#
# RETURN VALUE
# 0 OK
# > 0 failure
#
sub
run_testcase
($)
{
sub
run_testcase
($)
{
my
$tinfo
=
shift
;
my
$tinfo
=
shift
;
...
@@ -2362,7 +2403,7 @@ sub run_testcase ($) {
...
@@ -2362,7 +2403,7 @@ sub run_testcase ($) {
# Remove the file that mysql-test-run writes info to
# Remove the file that mysql-test-run writes info to
unlink
(
$path_current_test_log
);
unlink
(
$path_current_test_log
);
return
;
return
(
$res
==
62
)
?
0
:
$res
;
}
}
...
@@ -2389,7 +2430,7 @@ sub run_testcase ($) {
...
@@ -2389,7 +2430,7 @@ sub run_testcase ($) {
"
Server failed during test run
";
"
Server failed during test run
";
report_failure_and_restart
(
$tinfo
);
report_failure_and_restart
(
$tinfo
);
return
;
return
1
;
}
}
# ----------------------------------------------------
# ----------------------------------------------------
...
@@ -2400,7 +2441,7 @@ sub run_testcase ($) {
...
@@ -2400,7 +2441,7 @@ sub run_testcase ($) {
mtr_report
("
Test case timeout!
");
mtr_report
("
Test case timeout!
");
$tinfo
->
{'
timeout
'}
=
1
;
# Mark as timeout
$tinfo
->
{'
timeout
'}
=
1
;
# Mark as timeout
report_failure_and_restart
(
$tinfo
);
report_failure_and_restart
(
$tinfo
);
return
;
return
1
;
}
}
# ----------------------------------------------------
# ----------------------------------------------------
...
@@ -2414,6 +2455,7 @@ sub run_testcase ($) {
...
@@ -2414,6 +2455,7 @@ sub run_testcase ($) {
mtr_error
("
Unhandled process
$proc
exited
");
mtr_error
("
Unhandled process
$proc
exited
");
}
}
mtr_error
("
Should never come here
");
}
}
...
@@ -3631,6 +3673,10 @@ Misc options
...
@@ -3631,6 +3673,10 @@ Misc options
the first specified test case
the first specified test case
fast Run as fast as possible, dont't wait for servers
fast Run as fast as possible, dont't wait for servers
to shutdown etc.
to shutdown etc.
repeat=N Run each test N number of times
retry=N Retry tests that fail N times, limit number of failures
to $max_failures
retry-failure=N Limit number of retries for a failed test
reorder Reorder tests to get fewer server restarts
reorder Reorder tests to get fewer server restarts
help Get this help text
help Get this help text
...
...
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