From 30f7360025010e237462ca1a697c8e55b4a73c92 Mon Sep 17 00:00:00 2001 From: Marc Hoersken Date: Wed, 4 Mar 2020 22:36:47 +0100 Subject: tests: wrap ignored test failures in braces --- tests/runtests.pl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index 7a5f8a504..50c868390 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -5588,7 +5588,13 @@ foreach $testnum (@at) { $total++; # number of tests we've run if($error>0) { - $failed.= "$testnum "; + if($error==2) { + # ignored test failures are wrapped in () + $failed.= "($testnum) "; + } + else { + $failed.= "$testnum "; + } if($postmortem) { # display all files in log/ in a nice way displaylogs($testnum); -- cgit v1.2.1