Ignore editor backup files
[mmh] / test / runalltests
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