Prechádzať zdrojové kódy

2002/03/08 Nick Drochak <[email protected]>

	* System.XML_test.build: Don't build test dll by default.  Only build
	it when 'make test' is specified.

svn path=/trunk/mcs/; revision=2985
Nick Drochak 24 rokov pred
rodič
commit
61c36fe9be

+ 5 - 0
mcs/class/System.XML/Test/ChangeLog

@@ -1,3 +1,8 @@
+2002/03/08  Nick Drochak <[email protected]>
+
+	* System_test.build: Don't build test dll by default.  Only build
+	it when 'make test' is specified.
+
 2002-03-06  Kral Ferch <[email protected]>
 
 	* XmlAttributeTests.cs: Fixed bug in TestHasChildNodes test.

+ 4 - 1
mcs/class/System.XML/Test/System.XML_test.build

@@ -9,6 +9,9 @@
 	<property name="nunit_home" value="..\..\..\nunit"/>
 
 	<target name="build">
+	</target>
+
+	<target name="assemblies">
 		<csc target="library" output="System.XML_test.dll" debug="${debug}">
 			<arg value="/nowarn:1595"/>
 			<sources>
@@ -37,7 +40,7 @@
 
 	</target>
 
-	<target name="test" depends="build">
+	<target name="test" depends="assemblies">
 		<exec program="..\..\..\nunit\NUnitConsole" commandline="Ximian.Mono.Tests.AllTests,System.XML_test.dll" failonerror="false"/>
 	</target>