From: Peter Maydell Date: Sun, 3 Aug 2008 13:59:19 +0000 (+0000) Subject: Ignore editor backup files X-Git-Tag: PRE_POSIX_CONVERSION~47 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=90950f1aa3d8d01e4b1a4a4b389f1bff7da94f45 Ignore editor backup files --- diff --git a/ChangeLog b/ChangeLog index 39aab9a..cbd4ef2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-08-03 Peter Maydell + + * test/runalltests: ignore editor backup files + 2008-08-03 Eric Gillespie * etc/replcomps, etc/replgroupcomps: Trim trailing whitespace from diff --git a/test/runalltests b/test/runalltests index b43d42c..0497c52 100755 --- a/test/runalltests +++ b/test/runalltests @@ -1,6 +1,7 @@ #!/bin/sh -for i in `find tests -name 'test-*' -type f`; +# Note that we ignore *~ files as these are probably editor backups +for i in `find tests -name 'test-*[!~]' -type f`; do ./runtest $i done