You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by ra...@apache.org on 2005/03/12 07:06:08 UTC

svn commit: r157234 - httpd/apreq/branches/multi-env-unstable/library/t/parsers.c

Author: randyk
Date: Fri Mar 11 22:06:07 2005
New Revision: 157234

URL: http://svn.apache.org/viewcvs?view=rev&rev=157234
Log:
skip ELF-dependent tests on Win32.

Modified:
    httpd/apreq/branches/multi-env-unstable/library/t/parsers.c

Modified: httpd/apreq/branches/multi-env-unstable/library/t/parsers.c
URL: http://svn.apache.org/viewcvs/httpd/apreq/branches/multi-env-unstable/library/t/parsers.c?view=diff&r1=157233&r2=157234
==============================================================================
--- httpd/apreq/branches/multi-env-unstable/library/t/parsers.c (original)
+++ httpd/apreq/branches/multi-env-unstable/library/t/parsers.c Fri Mar 11 22:06:07 2005
@@ -108,6 +108,8 @@
 
 static void locate_default_parsers(dAT)
 {
+
+#ifndef WIN32
     apreq_parser_function_t f;
 
     AT_trace_on();
@@ -122,6 +124,9 @@
     AT_EQ(f, (apreq_parser_function_t)apreq_parse_multipart, "%pp");
 
     AT_trace_off();
+#else
+    AT_skip(3, "skipping ELF-dependent tests");
+#endif
 
 }