gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 246/264: tests: make runtests check that disabled tests exists


From: gnunet
Subject: [gnurl] 246/264: tests: make runtests check that disabled tests exists
Date: Thu, 30 Apr 2020 16:09:09 +0200

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

nikita pushed a commit to branch master
in repository gnurl.

commit 75e8feb6fb08b1e5849f5b05a7e815b234685f16
Author: Daniel Stenberg <address@hidden>
AuthorDate: Fri Apr 24 11:21:01 2020 +0200

    tests: make runtests check that disabled tests exists
    
    ... and error out if so. Removed '536' from DISABLED as there is no such
    test file.
    
    Closes #5288
---
 tests/data/DISABLED | 1 -
 tests/runtests.pl   | 8 +++++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/tests/data/DISABLED b/tests/data/DISABLED
index 9b3af1acf..198728fdf 100644
--- a/tests/data/DISABLED
+++ b/tests/data/DISABLED
@@ -22,7 +22,6 @@
 1307
 # Pipelining is deprecated
 530
-536
 584
 1900
 1901
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 1c6a028b9..d43b2772b 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -5492,7 +5492,13 @@ sub disabledtests {
                 next;
             }
             if($_ =~ /(\d+)/) {
-                $disabled{$1}=$1; # disable this test number
+                my ($n) = $1;
+                $disabled{$n}=$n; # disable this test number
+                if(! -f "data/test$n") {
+                    print STDERR "WARNING! Non-exiting test $n in DISABLED!\n";
+                    # fail hard to make user notice
+                    exit 1;
+                }
             }
         }
         close(D);

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



reply via email to

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