On Sep 2, 2006, at 09:42, alexchorny@gmail.com via RT wrote:
Show quoted text> ActiveState perl v5.8.7 built for MSWin32-x86-multi-thread
> Binary build 813.
I have the same Perl on Win32, build 815.
Show quoted text> example:
> t\apache...........
> # Failed test 'Apache is installed'
> # in t\apache.t at line 40.
>
> # Failed test 'Get name'
> # in t\apache.t at line 41.
> # got: undef
> # expected: 'Apache'
>
> # Failed test 'Test Version'
> # in t\apache.t at line 42.
> # got: undef
> # expected: '1.3.31'
>
> # Failed test 'Test major version'
> # in t\apache.t at line 43.
> # got: undef
> # expected: '1'
>
>
> P.S. ok on Vanilla Perl and RedHat.
Curious. I don't get these failures with my ActivePerl, either in DOS
or under cygwin. And the code in t/apache2.t is nearly identical, yet
you get no failures there?
Would you apply this patch and let me know what the output is?
Index: t/apache.t
===================================================================
--- t/apache.t (revision 2968)
+++ t/apache.t (working copy)
@@ -25,6 +25,8 @@
mod_imap mod_actions mod_userdir mod_alias mod_rewrite
mod_access mod_auth mod_so mod_setenvif mod_ssl
mod_perl);
+diag("httpd$ext");
+diag("myapxs$ext");
ok( my $apache = App::Info::HTTPD::Apache->new(
search_bin_dirs => $bin_dir,
search_exe_names => "httpd$ext",
Thanks.