gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 238/282: tests: wrap ignored test failures in braces


From: gnunet
Subject: [gnurl] 238/282: tests: wrap ignored test failures in braces
Date: Wed, 01 Apr 2020 14:31:43 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 30f7360025010e237462ca1a697c8e55b4a73c92
Author: Marc Hoersken <address@hidden>
AuthorDate: Wed Mar 4 22:36:47 2020 +0100

    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);

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]