Ignore editor backup files
authorPeter Maydell <pmaydell@chiark.greenend.org.uk>
Sun, 3 Aug 2008 13:59:19 +0000 (13:59 +0000)
committerPeter Maydell <pmaydell@chiark.greenend.org.uk>
Sun, 3 Aug 2008 13:59:19 +0000 (13:59 +0000)
ChangeLog
test/runalltests

index 39aab9a..cbd4ef2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-08-03  Peter Maydell  <pmaydell@chiark.greenend.org.uk>
+
+       * test/runalltests: ignore editor backup files
+
 2008-08-03  Eric Gillespie  <epg@pretzelnet.org>
 
        * etc/replcomps, etc/replgroupcomps: Trim trailing whitespace from
index b43d42c..0497c52 100755 (executable)
@@ -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