Randy Kobes wrote:
I'm working on trying to find out what causes Steve's problem in running the tests - he specifies MP_AP_PREFIX
properly, but somehow the wrong Apache directory is picked
up. This might be a problem with Apache-Test ...


I think the problem is that a fix in the current svn for
Apache::TestConfigParse didn't make it into this rc. The
diff is

[...]

Steve, does this fix the tests for you?

Yes, that allows the test suite to get up and running (with \apache2 in the httpd.conf file rather than \apache). Thanks.

Now that I can run the tests, I find that there is one failure: t\directive\perldo.t test 12:

# testing : $0
# expected: (?-xism:httpd)
# received: C:\apache2\bin\Apache.EXE
not ok 12

The attached (rather obvious) patch cures this, and all tests now pass (including ModPerl-Registry).


------------------------------------------------
Radan Computational Ltd.

The information contained in this message and any files transmitted with it are 
confidential and intended for the addressee(s) only. If you have received this 
message in error or there are any problems, please notify the sender 
immediately. The unauthorized use, disclosure, copying or alteration of this 
message is strictly forbidden. Note that any views or opinions presented in 
this email are solely those of the author and do not necessarily represent 
those of Radan Computational Ltd. The recipient(s) of this message should check 
it and any attached files for viruses: Radan Computational will accept no 
liability for any damage caused by any virus transmitted by this email.
--- t/response/TestDirective/perldo.pm.orig     2005-09-23 05:00:12.000000000 
+0100
+++ t/response/TestDirective/perldo.pm  2005-10-07 09:28:18.636949700 +0100
@@ -40,7 +40,7 @@
     ok $TestDirective::perl::line > 3;
 
     ok !t_cmp($0, '-e', '$0');
-    ok t_cmp($0, qr/httpd/, '$0');
+    ok t_cmp($0, qr/httpd|apache\.exe/i, '$0');
 
     ok t_cmp($TestDirective::perl::Included, 1, "Include");
 

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

Reply via email to