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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
7cd0a0d7
Commit
7cd0a0d7
authored
Oct 19, 2010
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Plain Diff
upmerge 56654
parents
138ede46
05062d57
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
7 deletions
+16
-7
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+13
-4
mysql-test/t/mysqltest.test
mysql-test/t/mysqltest.test
+1
-1
mysql-test/t/wait_timeout.test
mysql-test/t/wait_timeout.test
+2
-2
No files found.
mysql-test/mysql-test-run.pl
View file @
7cd0a0d7
...
...
@@ -618,13 +618,15 @@ sub run_test_server ($$$) {
if
(
$test_has_failed
and
$retries
<=
$opt_retry
){
# Test should be run one more time unless it has failed
# too many times already
my
$tname
=
$result
->
{
name
};
my
$failures
=
$result
->
{
failures
};
if
(
$opt_retry
>
1
and
$failures
>=
$opt_retry_failure
){
mtr_report
("
\n
Test has failed
$failures
times,
",
mtr_report
("
\n
Test
$tname
has failed
$failures
times,
",
"
no more retries!
\n
");
}
else
{
mtr_report
("
\n
Retrying test, attempt(
$retries
/
$opt_retry
)...
\n
");
mtr_report
("
\n
Retrying test
$tname
,
"
.
"
attempt(
$retries
/
$opt_retry
)...
\n
");
delete
(
$result
->
{
result
});
$result
->
{
retries
}
=
$retries
+
1
;
$result
->
write_test
(
$sock
,
'
TESTCASE
');
...
...
@@ -3204,7 +3206,8 @@ sub check_testcase($$)
"
\n
MTR's internal check of the test case '
$tname
' failed.
This means that the test case does not preserve the state that existed
before the test case was executed. Most likely the test case did not
do a proper clean-up.
do a proper clean-up. It could also be caused by the previous test run
by this thread, if the server wasn't restarted.
This is the diff of the states of the servers before and after the
test case was executed:
\n
";
$tinfo
->
{
check
}
.=
$report
;
...
...
@@ -3246,7 +3249,11 @@ test case was executed:\n";
# Kill any check processes still running
map
(
$_
->
kill
(),
values
(
%
started
));
mtr_warning
("
Check-testcase failed, this could also be caused by the
"
.
"
previous test run by this worker thread
")
if
$result
>
1
&&
$mode
eq
"
before
";
mark_time_used
('
check
');
return
$result
;
}
...
...
@@ -3884,7 +3891,9 @@ sub get_log_from_proc ($$) {
foreach
my
$mysqld
(
mysqlds
())
{
if
(
$mysqld
->
{
proc
}
eq
$proc
)
{
my
@srv_lines
=
extract_server_log
(
$mysqld
->
value
('
#log-error
'),
$name
);
$srv_log
=
"
\n
Server log from this test:
\n
"
.
join
("",
@srv_lines
);
$srv_log
=
"
\n
Server log from this test:
\n
"
.
"
----------SERVER LOG START-----------
\n
"
.
join
("",
@srv_lines
)
.
"
----------SERVER LOG END-------------
\n
";
last
;
}
}
...
...
mysql-test/t/mysqltest.test
View file @
7cd0a0d7
...
...
@@ -331,7 +331,7 @@ eval select $mysql_errno as "after_!errno_masked_error" ;
--
exec
illegal_command
--
cat_file
does_not_exist
--
perl
exit
(
1
);
exit
(
2
);
EOF
# ----------------------------------------------------------------------------
...
...
mysql-test/t/wait_timeout.test
View file @
7cd0a0d7
...
...
@@ -53,7 +53,7 @@ while (!`select @aborted_clients`)
dec
$retries
;
if
(
!
$retries
)
{
Failed
to
detect
that
client
has
been
aborted
;
die
Failed
to
detect
that
client
has
been
aborted
;
}
}
--
enable_query_log
...
...
@@ -108,7 +108,7 @@ while (!`select @aborted_clients`)
dec
$retries
;
if
(
!
$retries
)
{
Failed
to
detect
that
client
has
been
aborted
;
die
Failed
to
detect
that
client
has
been
aborted
;
}
}
--
enable_query_log
...
...
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