diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2005-12-16 18:10:05 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2005-12-16 18:10:05 +0000 |
commit | d1911d4b3d6267f9cd9dfb68fcef2afe4d098092 (patch) | |
tree | 460ce8e2a0029d0bc0113911bd8deee394c00be7 | |
parent | 14377200ccbba1f366ce2c2746c8cd70f61b9840 (diff) |
common/check.mak: Added make forever target for check.RELEASE-0_8_2
Original commit message from CVS:
* common/check.mak:
Added make forever target for check.
-rw-r--r-- | check.mak | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -79,6 +79,16 @@ torture: $(TESTS) dashes=`echo "$$banner" | sed s/./=/g`; \ echo $$dashes; echo $$banner; echo $$dashes +# forever tests +forever: $(TESTS) + -rm test-registry.xml + @echo "Forever tests ..." + while true; do \ + make check || \ + (echo "Failure"; exit 1) || \ + exit 1; \ + done + # valgrind all tests valgrind: $(TESTS) @echo "Valgrinding tests ..." |