|
@@ -1,6 +1,11 @@
|
|
|
#!/bin/sh
|
|
|
+
|
|
|
cd tests
|
|
|
-{ ./runtests.pl -a -n -s -j4 !flaky || echo "FAIL: curl" ; } | sed \
|
|
|
- -e 's|\([^ ]* *\) \([^ ]* *\)...OK|PASS: \1 \2|' \
|
|
|
- -e 's|\([^ ]* *\) \([^ ]* *\)...FAILED|FAIL: \1 \2|' \
|
|
|
- -e 's/Warning: test[0-9]\+ not present in tests\/data\/Makefile.inc//'
|
|
|
+
|
|
|
+# Run all tests, don't stop on first failure
|
|
|
+# Don't use valgrind if it is found
|
|
|
+# Use automake-style output
|
|
|
+# Run four tests in parallel
|
|
|
+# Print log output on failure
|
|
|
+# Don't run the flaky or timing dependent tests
|
|
|
+./runtests.pl -a -n -am -j4 -p '!flaky !timing-dependent'
|