Skip to content

Commit 0e7a32b

Browse files
committed
Fix regression in r1916055 - don't duplicate logic in _run_linux.sh
from _before_linux.sh in whether the perl-framework is used/needed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916056 13f79535-47bb-0310-9956-ffa450edef68
1 parent a1f6da9 commit 0e7a32b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/travis_run_linux.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ fi
3131

3232
PREFIX=${PREFIX:-$HOME/build/httpd-root}
3333

34-
# For trunk, "make check" is sufficient to run the test suite.
35-
# For 2.4.x, the test suite must be run manually
36-
if test ! -v SKIP_TESTING; then
34+
# If perl-framework testing is required it is checked out here by
35+
# _before_linux.sh:
36+
if test -d test/perl-framework; then
3737
CONFIG="$CONFIG --enable-load-all-modules"
3838
if grep -q ^check: Makefile.in; then
3939
CONFIG="--with-test-suite=test/perl-framework $CONFIG"

0 commit comments

Comments
 (0)