]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
runtests: if DISABLED cannot be read, error out
authorDaniel Stenberg <daniel@haxx.se>
Tue, 6 Aug 2024 07:46:55 +0000 (09:46 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 6 Aug 2024 22:30:17 +0000 (00:30 +0200)
Because then runtests cannot disable the right set of tests and things
will be annoying.

Closes #14411

tests/runtests.pl

index a4dc68e1424d2d00189ec62008854b06af6f8a07..19a9445f03aa6ae567e473374d39617a700c31d8 100755 (executable)
@@ -2622,6 +2622,10 @@ sub disabledtests {
             }
         }
     }
+    else {
+        print STDERR "Cannot open $file, exiting\n";
+        exit 3;
+    }
 }
 
 #######################################################################