aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-03 11:44:37 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-03 11:44:37 +1200
commite327a74d662f89b4d54279b0d1fabe9ce8420d8c (patch)
tree8b873a28875be3587c275c8d3980675790019b75 /test
parentHave rndl(1) use a tempfile (diff)
downloaddotfiles-e327a74d662f89b4d54279b0d1fabe9ce8420d8c.tar.gz
dotfiles-e327a74d662f89b4d54279b0d1fabe9ce8420d8c.zip
Don't test sed scripts
Changed my mind
Diffstat (limited to 'test')
-rwxr-xr-xtest/bin10
-rwxr-xr-xtest/games10
2 files changed, 0 insertions, 20 deletions
diff --git a/test/bin b/test/bin
index 4b68d6b8..a4d5e452 100755
--- a/test/bin
+++ b/test/bin
@@ -9,16 +9,6 @@ for bin in bin/* ; do
*sh)
sh -n "$bin" || exit
;;
- *'sed -f')
- sed -f "$bin" /dev/null >/dev/null || exit
- ;;
- *'awk -f')
- # Not sure how to test these yet
- ;;
- *)
- printf 2>&1 'Unknown hashbang for %s\n' "$bin"
- exit 1
- ;;
esac
done
printf 'All shell scripts in bin parsed successfully.\n'
diff --git a/test/games b/test/games
index 8dec1538..3afe6414 100755
--- a/test/games
+++ b/test/games
@@ -9,16 +9,6 @@ for game in games/* ; do
*sh)
sh -n "$game" || exit
;;
- *'sed -f')
- sed -f "$game" /dev/null >/dev/null || exit
- ;;
- *'awk -f')
- # Not sure how to test these yet
- ;;
- *)
- printf 2>&1 'Unknown hashbang for %s\n' "$game"
- exit 1
- ;;
esac
done
printf 'All shell scripts in games parsed successfully.\n'