summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2020-01-06 12:52:48 +0100
committerJoe Orton <jorton@apache.org>2020-01-06 12:52:48 +0100
commit0bd4a3d88cbaa8d1d58c509f8506ecbdaa402982 (patch)
treeee502c9b958de510314c55b109c9dc57aab70d87 /test
parentCache SVN checkout of test/framework across Travis builds. Should (diff)
downloadapache2-0bd4a3d88cbaa8d1d58c509f8506ecbdaa402982.tar.xz
apache2-0bd4a3d88cbaa8d1d58c509f8506ecbdaa402982.zip
Add Travis job which runs tests in random order.
Github: closes #86 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1872373 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rwxr-xr-xtest/travis_run_linux.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh
index db2917e025..6a5d0cb251 100755
--- a/test/travis_run_linux.sh
+++ b/test/travis_run_linux.sh
@@ -27,11 +27,11 @@ fi
make $MFLAGS
if ! test -v SKIP_TESTING; then
if test -v WITH_TEST_SUITE; then
- make check
+ make check TESTS="${TEST_ARGS}"
else
make install
cd test/perl-framework
perl Makefile.PL -apxs $HOME/build/httpd-root/bin/apxs
- make test
+ make test APACHE_TEST_EXTRA_ARGS="${TEST_ARGS}"
fi
fi