stas 2004/08/26 16:58:58
Modified: perl-framework/Apache-Test Changes
perl-framework/Apache-Test/lib/Apache TestConfig.pm
Log:
Fix skip test suite functionality in the interactive configuration
phase
Revision Changes Path
1.160 +3 -0 httpd-test/perl-framework/Apache-Test/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -u -r1.159 -r1.160
--- Changes 26 Aug 2004 01:17:59 -0000 1.159
+++ Changes 26 Aug 2004 23:58:58 -0000 1.160
@@ -8,6 +8,9 @@
=item 1.14-dev
+Fix skip test suite functionality in the interactive configuration
+phase [Stas]
+
s/die/CORE::die/ after exec() to avoid warnings (and therefore
failures) when someone overrides CORE::die when using Apache-Test
[William McKee, Stas]
1.241 +1 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
Index: TestConfig.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -u -r1.240 -r1.241
--- TestConfig.pm 20 Aug 2004 11:32:30 -0000 1.240
+++ TestConfig.pm 26 Aug 2004 23:58:58 -0000 1.241
@@ -2191,7 +2191,7 @@
# stop the test suite without an error (so automatic tools
# like CPAN.pm will be able to continue)
if (lc($ans) eq 'skip' && !$optional) {
- skip_test_suite();
+ Apache::TestRun::skip_test_suite();
next; # in case they change their mind
}