Author: torsten
Date: Thu Mar 3 19:16:25 2011
New Revision: 1076733
URL: http://svn.apache.org/viewvc?rev=1076733&view=rev
Log:
skip Apache2::SizeLimit tests for threaded MPMs
Modified:
perl/modperl/trunk/Makefile.PL
Modified: perl/modperl/trunk/Makefile.PL
URL:
http://svn.apache.org/viewvc/perl/modperl/trunk/Makefile.PL?rev=1076733&r1=1076732&r2=1076733&view=diff
==============================================================================
--- perl/modperl/trunk/Makefile.PL (original)
+++ perl/modperl/trunk/Makefile.PL Thu Mar 3 19:16:25 2011
@@ -777,7 +777,7 @@ PASSENV = $env
EOF
}
- return $preamble . <<'EOF';
+ $preamble .= <<'EOF';
TEST_VERBOSE = 0
TEST_FILES =
@@ -797,12 +797,19 @@ run_subtests ::
run_subtests ::
$(MAKE) -C Apache-Reload test
+EOF
+
+ $preamble .= <<'EOF' unless $build->mpm_is_threaded();
run_subtests ::
$(MAKE) -C Apache-SizeLimit test
+EOF
+
+ $preamble .= <<'EOF';
test :: pure_all run_tests test_clean
EOF
+ return $preamble;
}
sub MY::postamble {