Index: testcases/org/apache/tools/ant/IntrospectionHelperTest.java
===================================================================
RCS file: /home/cvspublic/jakarta-ant/src/testcases/org/apache/tools/ant/IntrospectionHelperTest.java,v
retrieving revision 1.2
diff -u -r1.2 IntrospectionHelperTest.java
--- testcases/org/apache/tools/ant/IntrospectionHelperTest.java	2000/07/19 13:00:44	1.2
+++ testcases/org/apache/tools/ant/IntrospectionHelperTest.java	2000/09/16 17:49:00
@@ -67,6 +67,8 @@
 
 public class IntrospectionHelperTest extends TestCase {
 
+    public static boolean isUnixStyle = File.pathSeparatorChar == ':';
+
     public IntrospectionHelperTest(String name) {
         super(name);
     }
@@ -404,7 +406,11 @@
     }
 
     public void setTen(File f) {
-        assertEquals("/tmp/2", f.getAbsolutePath());
+        if (isUnixStyle) { 
+            assertEquals("/tmp/2", f.getAbsolutePath());
+        } else {
+            assertEquals("c:\\tmp\\2", f.getAbsolutePath().toLowerCase());
+        }
     }
 
     public void setEleven(boolean b) {
Index: testcases/org/apache/tools/ant/types/PathTest.java
===================================================================
RCS file: /home/cvspublic/jakarta-ant/src/testcases/org/apache/tools/ant/types/PathTest.java,v
retrieving revision 1.5
diff -u -r1.5 PathTest.java
--- testcases/org/apache/tools/ant/types/PathTest.java	2000/09/07 09:51:02	1.5
+++ testcases/org/apache/tools/ant/types/PathTest.java	2000/09/16 17:49:02
@@ -129,7 +129,7 @@
             assertEquals("/test", l[1]);
         } else {
             assertEquals("drives on DOS", 1, l.length);
-            assertEquals("c:\\test", l[0]);
+            assertEquals("c:\\test", l[0].toLowerCase());
         }
 
         p = new Path(project, "c:/test");
@@ -141,7 +141,7 @@
             assertEquals("/test", l[1]);
         } else {
             assertEquals("drives on DOS", 1, l.length);
-            assertEquals("c:\\test", l[0]);
+            assertEquals("c:\\test", l[0].toLowerCase());
         }
     }
 
