mirror of https://github.com/PCSX2/pcsx2.git
tests: show replay command for timed-out test
This commit is contained in:
parent
807ec04229
commit
39f661c5f5
|
@ -119,12 +119,14 @@ foreach my $test (sort(keys(%$g_test_db))) {
|
||||||
if ($info->{"STATUS"} == 0) {
|
if ($info->{"STATUS"} == 0) {
|
||||||
print color('bold green');
|
print color('bold green');
|
||||||
print " OK | $test\n";
|
print " OK | $test\n";
|
||||||
} elsif ($info->{"STATUS"} == 0xBADBEEF) {
|
|
||||||
print color('bold blue');
|
|
||||||
print " Tout | $test\n";
|
|
||||||
} else {
|
} else {
|
||||||
print color('bold red');
|
if ($info->{"STATUS"} == 0xBADBEEF) {
|
||||||
print " KO | $test\n";
|
print color('bold blue');
|
||||||
|
print " Tout | $test\n";
|
||||||
|
} else {
|
||||||
|
print color('bold red');
|
||||||
|
print " KO | $test\n";
|
||||||
|
}
|
||||||
if ($o_show_diff) {
|
if ($o_show_diff) {
|
||||||
print color('bold magenta'); print "-----------------------------------------------------------------------\n"; print color('reset');
|
print color('bold magenta'); print "-----------------------------------------------------------------------\n"; print color('reset');
|
||||||
print test_cmd($test, $cfg) . "\n\n";
|
print test_cmd($test, $cfg) . "\n\n";
|
||||||
|
|
Loading…
Reference in New Issue