aboutsummaryrefslogtreecommitdiff
path: root/test/games
diff options
context:
space:
mode:
Diffstat (limited to 'test/games')
-rwxr-xr-xtest/games7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/games b/test/games
index 931c3141..c1e3cf4a 100755
--- a/test/games
+++ b/test/games
@@ -1,15 +1,16 @@
#!/bin/sh
for game in games/* ; do
+ [ -e "$game" ] || continue
hb=$(sed 1q "$game") || exit
case $hb in
*bash)
- bash -n "$game" || exit 1
+ bash -n "$game" || exit
;;
*sh)
- sh -n "$game" || exit 1
+ sh -n "$game" || exit
;;
*'sed -f')
- sed -f "$game" /dev/null >/dev/null || exit 1
+ sed -f "$game" /dev/null >/dev/null || exit
;;
*'awk -f')
# Not sure how to test these yet