# HG changeset patch # User Paul Boddie # Date 1441970943 -7200 # Node ID 845235758980d17e5a5a5bde3cb3f290e25b3dc5 # Parent 253e9da20d9eb4b93107d4312bef2d039b57c1f8 Only run scripts beginning with "test_". diff -r 253e9da20d9e -r 845235758980 test_all.sh --- a/test_all.sh Thu Sep 10 23:56:21 2015 +0200 +++ b/test_all.sh Fri Sep 11 13:29:03 2015 +0200 @@ -1,3 +1,3 @@ #!/bin/sh -for FILENAME in tests/*.sh ; do echo $FILENAME ; $FILENAME ; done +for FILENAME in tests/test_*.sh ; do echo $FILENAME ; $FILENAME ; done