From 9818ec21274c4d61d278cf7d25a3f6d781fcc1d3 Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Wed, 6 Sep 2006 16:54:33 +0200 Subject: [PATCH] Don't need to run the full battery of tests every time. --- tests/test.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/test.sh b/tests/test.sh index 2587b44..539dd50 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -1,7 +1,11 @@ #! /bin/sh -TESTS="passthru simple clone include attribute attribute2" -LANGUAGES="perl php python" +if [ -z "$TESTS" ]; then + TESTS="passthru simple clone include attribute attribute2" +fi +if [ -z "$LANGUAGES" ]; then + LANGUAGES="perl php python" +fi for L in $LANGUAGES; do for T in $TESTS; do -- 2.39.2