Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Diamond <injektilo@mono-cvs.ximian.com>2002-03-27 04:09:45 +0300
committerJason Diamond <injektilo@mono-cvs.ximian.com>2002-03-27 04:09:45 +0300
commit77113b64a08f60bbc32a3ede5196fd6634fb09e7 (patch)
treefa0fecc93db28ce86c31b161f4541f3be81b2c3c
parentd6e7b064713ce043f1a719f2680945f04dd847c9 (diff)
Removed XPathScannerTests from the project since VS.NET wasn't happy with it. Added the tests separately to the .build file so that I can still work.
svn path=/trunk/mcs/; revision=3380
-rw-r--r--mcs/class/System.XML/Test/AllTests.cs5
-rw-r--r--mcs/class/System.XML/Test/ChangeLog7
-rw-r--r--mcs/class/System.XML/Test/Mono.Test.csproj5
-rw-r--r--mcs/class/System.XML/Test/System.XML_test.build1
4 files changed, 9 insertions, 9 deletions
diff --git a/mcs/class/System.XML/Test/AllTests.cs b/mcs/class/System.XML/Test/AllTests.cs
index 6f8dc07960d..3551d7b3aac 100644
--- a/mcs/class/System.XML/Test/AllTests.cs
+++ b/mcs/class/System.XML/Test/AllTests.cs
@@ -32,10 +32,7 @@ namespace Ximian.Mono.Tests
suite.AddTest (new TestSuite (typeof (XmlWhitespaceTests)));
suite.AddTest (new TestSuite (typeof (XmlSignificantWhitespaceTests)));
suite.AddTest (new TestSuite (typeof (XmlDeclarationTests)));
- suite.AddTest (new TestSuite (typeof (XmlDocumentTypeTests)));
-#if !MICROSOFT
- suite.AddTest (new TestSuite (typeof (XPathScannerTests)));
-#endif
+ suite.AddTest (new TestSuite (typeof (XmlDocumentTypeTests)));
return suite;
}
}
diff --git a/mcs/class/System.XML/Test/ChangeLog b/mcs/class/System.XML/Test/ChangeLog
index 75b4d30620b..5f8a436a5d3 100644
--- a/mcs/class/System.XML/Test/ChangeLog
+++ b/mcs/class/System.XML/Test/ChangeLog
@@ -1,3 +1,10 @@
+2002-03-26 Jason Diamond <jason@injektilo.org>
+
+ * AllTests.cs:
+ * Mono.Test.csproj: Removed XPathScanner tests.
+
+ * System.XML_test.build: Test XPathScanner separately.
+
2002-03-26 Duncan Mak <duncan@ximian.com>
* AllTests.cs:
diff --git a/mcs/class/System.XML/Test/Mono.Test.csproj b/mcs/class/System.XML/Test/Mono.Test.csproj
index 2f8d33bf575..677a5b82388 100644
--- a/mcs/class/System.XML/Test/Mono.Test.csproj
+++ b/mcs/class/System.XML/Test/Mono.Test.csproj
@@ -160,11 +160,6 @@
SubType = "Code"
BuildAction = "Compile"
/>
- <File
- RelPath = "XPathScannerTests.cs"
- SubType = "Code"
- BuildAction = "Compile"
- />
</Include>
</Files>
</CSHARP>
diff --git a/mcs/class/System.XML/Test/System.XML_test.build b/mcs/class/System.XML/Test/System.XML_test.build
index 3a61ead640e..b388d17407c 100644
--- a/mcs/class/System.XML/Test/System.XML_test.build
+++ b/mcs/class/System.XML/Test/System.XML_test.build
@@ -42,6 +42,7 @@
<target name="test" depends="assemblies">
<exec program="..\..\..\nunit\NUnitConsole" commandline="Ximian.Mono.Tests.AllTests,System.XML_test.dll" failonerror="false"/>
+ <exec program="..\..\..\nunit\NUnitConsole" commandline="Ximian.Mono.Tests.XPathScannerTests,System.XML_test.dll" failonerror="false"/>
</target>
<target name="clean">