dougm 01/12/21 17:30:19
Modified: perl-framework/t/ssl http.t
Log:
known failure with win32; mark as todo
Revision Changes Path
1.6 +9 -1 httpd-test/perl-framework/t/ssl/http.t
Index: http.t
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/t/ssl/http.t,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- http.t 2001/09/10 17:12:37 1.5
+++ http.t 2001/12/22 01:30:19 1.6
@@ -8,7 +8,15 @@
my $url = '/index.html';
-plan tests => 1;
+my @todo;
+
+if (Apache::TestConfig::WIN32) {
+ print "\n#ap_core_translate() chokes on ':' here\n",
+ "#where r->uri = /mod_ssl:error:HTTP-request\n";
+ @todo = (todo => [1]);
+}
+
+plan tests => 1, @todo;
my $config = Apache::Test::config();
my $vars = Apache::Test::vars();