2005-06-28 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Wed, 29 Jun 2005 03:08:12 +0000 (03:08 -0000)
committerZoltan Varga <vargaz@gmail.com>
Wed, 29 Jun 2005 03:08:12 +0000 (03:08 -0000)
* Makefile.am appdomain3.cs: Remove appdomain3 test, since it is a duplicate of appdomain-unload.

svn path=/trunk/mono/; revision=46693

mono/tests/ChangeLog
mono/tests/Makefile.am
mono/tests/appdomain3.cs [deleted file]

index 6f28aa2ec19967759620d367fe6a67e8e1dfd36d..b83435ba03288b53db9b8a20c53ff91921228022 100644 (file)
@@ -1,3 +1,7 @@
+2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
+
+       * Makefile.am appdomain3.cs: Remove appdomain3 test, since it is a duplicate of appdomain-unload.
+
 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
 
        * pinvoke2.cs: Add test for #75374.
index eb6048e097e0e61b671885c6c15fdccc14ac7c7b..aadfed3824e75cace63230501bd01c7aff21f963 100644 (file)
@@ -133,7 +133,6 @@ TEST_CS_SRC=                        \
        appdomain.cs        \
        appdomain1.cs           \
        appdomain2.cs           \
-       appdomain3.cs           \
        appdomain-client.cs     \
        appdomain-unload.cs \
        loader.cs       \
diff --git a/mono/tests/appdomain3.cs b/mono/tests/appdomain3.cs
deleted file mode 100644 (file)
index 29a16e1..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Security.Policy;
-using System.Runtime.Remoting;
-using System.Threading;
-
-class Container {
-
-       static int Main ()
-       {
-               Console.WriteLine ("Friendly name: " + AppDomain.CurrentDomain.FriendlyName);
-                       
-               AppDomain newDomain = AppDomain.CreateDomain ("NewDomain");
-
-               AppDomain.Unload (newDomain);
-
-               Console.WriteLine("test-ok");
-
-               return 0;
-       }
-}