]> git.notmuchmail.org Git - notmuch/blobdiff - test/aggregate-results.sh
test suite: don't consider skipped individual tests as failing
[notmuch] / test / aggregate-results.sh
index b016edb9117108523642b17862b20846f4fbc89c..6322854675fdae93cabbf55ac9a7cb531513b00d 100755 (executable)
@@ -82,7 +82,10 @@ if [ "$skipped" != "0" ]; then
     echo "$skipped $tests skipped."
 fi
 
-if [ $success -gt 0 -a $fixed -eq 0 -a $failed -eq 0 -a $skipped -eq 0 ]
+# Note that we currently do not consider skipped tests as failing the
+# build.
+
+if [ $success -gt 0 -a $fixed -eq 0 -a $failed -eq 0 ]
 then
     exit 0
 else