From 5925bd5e37497e7f899086502e9b8d05cd2ee457 Mon Sep 17 00:00:00 2001
From: Koen Punt <koen@koenpunt.nl>
Date: Sat, 10 May 2014 18:59:34 +0200
Subject: [PATCH] make suite for shell task configurable

---
 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index cb14573..551824b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
 URCHIN=`which urchin`
 SHELLS=sh bash dash ksh zsh
+TEST_SUITE=fast
 
 .PHONY: $(SHELLS) test
 
@@ -7,7 +8,7 @@ fast: $(SHELLS)
 
 $(SHELLS):
 	@printf '\n\033[0;34m%s\033[0m\n' "Running tests in $@"
-	@$@ $(URCHIN) -f test/fast
+	@$@ $(URCHIN) -f test/$(TEST_SUITE)
 
 test: fast
 	@$(URCHIN) -f test/slow