1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

WL#4350 Improve error message

This commit is contained in:
Magnus Svensson
2008-09-11 18:30:30 +02:00
parent b76b046daa
commit 6e47698f21

View File

@ -2752,8 +2752,8 @@ sub check_testcase($$)
else { else {
# Unknown process returned, most likley a crash, abort everything # Unknown process returned, most likley a crash, abort everything
$tinfo->{comment}= $tinfo->{comment}=
"Unexpected process $proc returned during ". "The server $proc crashed while running ".
"check testcase $mode test"; "'check testcase $mode test'";
$result= 3; $result= 3;
} }
@ -2864,8 +2864,7 @@ sub run_on_all($$)
else { else {
# Unknown process returned, most likley a crash, abort everything # Unknown process returned, most likley a crash, abort everything
$tinfo->{comment}.= $tinfo->{comment}.=
"Unexpected process $proc returned during ". "The server $proc crashed while running '$run'";
"execution of '$run'";
} }
# Kill any check processes still running # Kill any check processes still running
@ -3352,8 +3351,7 @@ sub check_warnings ($) {
else { else {
# Unknown process returned, most likley a crash, abort everything # Unknown process returned, most likley a crash, abort everything
$tinfo->{comment}= $tinfo->{comment}=
"Unexpected process $proc returned during ". "The server $proc crashed while running 'check warnings'";
"check warnings";
$result= 3; $result= 3;
} }