summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/runtests6
1 files changed, 4 insertions, 2 deletions
diff --git a/admin/runtests b/admin/runtests
index 920a873..e1ce090 100644
--- a/admin/runtests
+++ b/admin/runtests
@@ -37,10 +37,12 @@ test_docblocks () {
}
test_php () {
+ TEXTTEST_ARGS="--extra-tests=contrib/MemcachedStore.php"
if uname -a | grep -i cygwin >/dev/null 2>/dev/null ; then
- /usr/bin/env php "$(dirname "$0")/texttest.php" --insecure-rand
+ /usr/bin/env php "$(dirname "$0")/texttest.php" --insecure-rand \
+ $TEXTTEST_ARGS
else
- /usr/bin/env php "$HERE/texttest.php"
+ /usr/bin/env php "$HERE/texttest.php" $TEXTTEST_ARGS
fi
}