From 90950f1aa3d8d01e4b1a4a4b389f1bff7da94f45 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Sun, 3 Aug 2008 13:59:19 +0000 Subject: [PATCH] Ignore editor backup files --- ChangeLog | 4 ++++ test/runalltests | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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 -- 1.7.10.4