* Makefile: Changed nunit dll, to make it easier to integrate in the result
authorLluis Sanchez <lluis@novell.com>
Fri, 4 Jun 2004 09:23:43 +0000 (09:23 -0000)
committerLluis Sanchez <lluis@novell.com>
Fri, 4 Jun 2004 09:23:43 +0000 (09:23 -0000)
  web page.
* wstest.cs: Little fix.

svn path=/trunk/mcs/; revision=28827

mcs/class/System.Web.Services/Test/standalone/ChangeLog
mcs/class/System.Web.Services/Test/standalone/Makefile
mcs/class/System.Web.Services/Test/standalone/wstest.cs

index 5c5cdb87c05cc42ce716aad058323f3657faeae0..ecfdda4ae1443bfa3a8a1c300231ed9202ca6f7c 100644 (file)
@@ -1,3 +1,9 @@
+2004-06-04  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * Makefile: Changed nunit dll, to make it easier to integrate in the result
+         web page.
+       * wstest.cs: Little fix.
+
 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
 
        * Makefile: generate client source file list before compiling the test
index 7696d37c8045d66d817a035d293031f19be0448f..ce5e5ada435a69a519552d14b8d92e97db2064fe 100644 (file)
@@ -18,7 +18,7 @@ proxies.dll:
        $(MCS) /r:System.Web.Services.dll /r:System.Data /target:library -out:proxies.dll @proxies.sources
 
 tests: proxies
-       $(MCS) /r:proxies.dll /r:System.Web.Services.dll /r:nunit.framework.dll /r:System.Data /target:library -out:testclient.dll @client.sources WebServiceTest.cs
+       $(MCS) /r:proxies.dll /r:System.Web.Services.dll /r:nunit.framework.dll /r:System.Data /target:library -out:System.Web.Services-standalone_test.dll @client.sources WebServiceTest.cs
 
 update:
        mono --debug wstest.exe ur http://www.xmethods.net/default.disco wsdl.ignore
@@ -64,14 +64,11 @@ test-wsdl: tools
        mono ../../../../tools/corcompare/mono-api-diff.exe proxies.net.xml proxies.mono.xml > proxies.diff.xml
        mono wstest.exe checkdiff proxies.diff.xml
        
-kk:
-       gunzip -c proxies.net.xml.gz > proxies.net.xml
-       
 test-clients: tests
        rm -f somefile && touch somefile
        (tail -f somefile | xsp --root server)&
        sleep 2
-       -mono ../../../lib/nunit-console.exe testclient.dll
+       -mono ../../../lib/nunit-console.exe System.Web.Services-standalone_test.dll
        echo "" >> somefile
 
 test: test-wsdl test-clients
index 49765cac120eff3d6041b6c6d5174d739c723aaa..c7b6b91379ccb9673c408bfc49b37fd89ba511a8 100644 (file)
@@ -647,7 +647,7 @@ public class Driver
                
                XmlDocument result = new XmlDocument ();
                XmlElement res = result.CreateElement ("test-results");
-               res.SetAttribute ("name", "wsdl tests");
+               res.SetAttribute ("name", "wsdl-tests");
                res.SetAttribute ("date", DateTime.Now.ToShortDateString ());
                res.SetAttribute ("time", DateTime.Now.ToShortTimeString ());
                result.AppendChild (res);