]> git.notmuchmail.org Git - notmuch/blobdiff - test/notmuch-test
Fix compilation warnings in test/smtp-dummy.c.
[notmuch] / test / notmuch-test
index 9f58c129206d42e0005522ba6dc8d321181cda30..83f284d928808c86920ecf32dafd77c0b108336b 100755 (executable)
@@ -46,9 +46,17 @@ TESTS=${NOTMUCH_TESTS:=$TESTS}
 # Clean up any results from a previous run
 rm -r test-results >/dev/null 2>/dev/null
 
+# test for timeout utility
+if command -v timeout >/dev/null; then
+    TEST_TIMEOUT_CMD="timeout 2m "
+    echo "INFO: using 2 minute timeout for tests"
+else
+    TEST_TIMEOUT_CMD=""
+fi
+
 # Run the tests
 for test in $TESTS; do
-       ./$test "$@"
+    $TEST_TIMEOUT_CMD ./$test "$@"
 done
 
 # Report results