On Sat, 8 Mar 2003, Randy Kobes wrote:

> On Win32, there's a couple of minor things with the
> ModPerl-Registry tests. 
[ ... ] 
> - in the ModPerl-Registry/t/basic.t test, some tests are
> made which rely on the setting of the executable bit, which
> isn't available on Win32. The following diff:
[ .. ]
> skips these tests for Win32.

Sorry about that - I forgot to use Apache::TestConfig in
that latter diff:

Index: ModPerl-Registry/t/basic.t
===================================================================
RCS file: /home/cvs/modperl-2.0/ModPerl-Registry/t/basic.t,v
retrieving revision 1.10
diff -u -r1.10 basic.t
--- ModPerl-Registry/t/basic.t  8 Mar 2003 03:20:36 -0000       1.10
+++ ModPerl-Registry/t/basic.t  8 Mar 2003 08:11:10 -0000
@@ -4,6 +4,7 @@
 use Apache::Test;
 use Apache::TestUtil;
 use Apache::TestRequest qw(GET_BODY HEAD);
+use Apache::TestConfig ();
 
 my %modules = (
     registry    => 'ModPerl::Registry',
@@ -28,6 +29,10 @@
 
 # test non-executable bit
 for my $alias (@aliases) {
+    if (Apache::TestConfig::WIN32) {
+        skip "non-executable bit test for Win32", 0;
+        next;
+    }
     my $url = "/$alias/not_executable.pl";
 
     ok t_cmp(

===============================================================
-- 
best regards,
randy


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to