aboutsummaryrefslogtreecommitdiff
path: root/test/games
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-02 16:23:49 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-02 16:31:22 +1200
commitd1c2c6339342083ceee1b96485dfc65893e68dca (patch)
treef416ef11c71c20ccc6e2eb3800b9f3a0a17d00ab /test/games
parentGet rid of a lot of comment boilerplate (diff)
downloaddotfiles-d1c2c6339342083ceee1b96485dfc65893e68dca.tar.gz
dotfiles-d1c2c6339342083ceee1b96485dfc65893e68dca.zip
Move tests and lints into their own scripts
Much nicer than having them embedded in the Makefile. Might do this for some of the more complex install targets too. Or maybe all of them ...
Diffstat (limited to 'test/games')
-rwxr-xr-xtest/games9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/games b/test/games
new file mode 100755
index 00000000..f75de7a5
--- /dev/null
+++ b/test/games
@@ -0,0 +1,9 @@
+#!/bin/sh
+for game in games/* ; do
+ if sed 1q "$game" | grep -q 'bash$' ; then
+ bash -n "$game" || exit 1
+ elif sed 1q "$game" | grep -q 'sh$' ; then
+ sh -n "$game" || exit 1
+ fi
+done
+printf 'All shell scripts in games parsed successfully.\n'