Index: java/tests/xinclude/Test.java
===================================================================
RCS file: /home/cvspublic/xml-xerces/java/tests/xinclude/Test.java,v
retrieving revision 1.2
diff -u -r1.2 Test.java
--- java/tests/xinclude/Test.java	17 Oct 2003 21:53:17 -0000	1.2
+++ java/tests/xinclude/Test.java	13 Nov 2003 00:35:50 -0000
@@ -141,7 +141,7 @@
                                 try {
                                     tester.setLogFile(
                                         new PrintStream(
-                                            new FileOutputStream(args[i++])));
+                                            new FileOutputStream(args[++i])));
                                 }
                                 catch (IOException ioe) {
                                     System.err.println(
@@ -307,30 +307,30 @@
             return true;
         }
 
-        // try {
+        try {
             if (passed == expectedPass) {
-                /** if (compareOutput(new FileReader(expectedOutputFile),
-                    new StringReader(fResults))) { **/
+                if (compareOutput(new FileReader(expectedOutputFile),
+                    new StringReader(fResults))) {
                     fLogStream.println("Result: PASS");
                     return true;
-                /** }
+                }
                 else {
                     fLogStream.println("Result: FAIL");
                     return false;
-                } **/
+                }
             }
             else {
                 fLogStream.println(fResults);
                 fLogStream.println("Result: FAIL");
                 return false;
             }
-        // }
-        /** catch (IOException e) {
+        }
+        catch (IOException e) {
             fLogStream.println(
                 "Unexpected IO problem attempting to verify results: " + e);
             fLogStream.println("Result: FAIL");
             return false;
-        } **/
+        }
     }
 
     /* (non-Javadoc)
Index: java/tests/xinclude/tests/tests.xsd
===================================================================
RCS file: /home/cvspublic/xml-xerces/java/tests/xinclude/tests/tests.xsd,v
retrieving revision 1.1
diff -u -r1.1 tests.xsd
--- java/tests/xinclude/tests/tests.xsd	28 Jul 2003 20:47:33 -0000	1.1
+++ java/tests/xinclude/tests/tests.xsd	13 Nov 2003 00:35:50 -0000
@@ -19,7 +19,7 @@
 		</element>
 	</sequence>
 	<attribute name="name" type="ID"/>
-	<attribute ref="xml:base"/>
+	<!--attribute ref="xml:base"/-->
 </complexType>
 
 <!-- used for test01.xml -->
@@ -37,7 +37,7 @@
 			<element name="select" type="xit:selectType"/>
 			<element name="view">
 				<complexType>
-					<attribute ref="xml:base"/>
+					<!--attribute ref="xml:base"/-->
 					<attribute name="sun" type="string"/>
 				</complexType>
 			</element>
@@ -53,7 +53,7 @@
 	<complexType>
 		<attribute name="foo" type="string"/>
 		<attribute name="bar" type="string"/>
-		<attribute ref="xml:base"/>
+		<!--attribute ref="xml:base"/-->
 	</complexType>
 </element>
 

