aboutsummaryrefslogtreecommitdiff
path: root/test/urxvt
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/urxvt
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/urxvt')
-rwxr-xr-xtest/urxvt5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/urxvt b/test/urxvt
new file mode 100755
index 00000000..90a298d7
--- /dev/null
+++ b/test/urxvt
@@ -0,0 +1,5 @@
+#!/bin/sh
+for perl in urxvt/ext/* ; do
+ perl -c "$perl" >/dev/null || exit 1
+done
+printf 'All Perl scripts in urxvt/ext parsed successfully.\n'