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
path: root/mcs
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2005-06-13 17:02:26 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-06-13 17:02:26 +0400
commit468fe09de5c8b7fb3fb466fe5de9f243d08d348d (patch)
treeb56006d3672dcc148a4a757e6ae1476f213f2980 /mcs
parentf3a7b5e02cd2abbe32485731de507f2938b5bfd6 (diff)
2005-06-13 Sebastien Pouliot <sebastien@ximian.com>
* RuntimeEnvironmentTest.cs: Commented an assert than wasn't true when doing a "make distcheck". svn path=/trunk/mcs/; revision=45862
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/corlib/Test/System.Runtime.InteropServices/ChangeLog5
-rw-r--r--mcs/class/corlib/Test/System.Runtime.InteropServices/RuntimeEnvironmentTest.cs4
2 files changed, 7 insertions, 2 deletions
diff --git a/mcs/class/corlib/Test/System.Runtime.InteropServices/ChangeLog b/mcs/class/corlib/Test/System.Runtime.InteropServices/ChangeLog
index 7602a624716..4fc3db1f6e0 100644
--- a/mcs/class/corlib/Test/System.Runtime.InteropServices/ChangeLog
+++ b/mcs/class/corlib/Test/System.Runtime.InteropServices/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-13 Sebastien Pouliot <sebastien@ximian.com>
+
+ * RuntimeEnvironmentTest.cs: Commented an assert than wasn't true when
+ doing a "make distcheck".
+
2005-06-07 Sebastien Pouliot <sebastien@ximian.com>
* RuntimeEnvironmentTest.cs: New. Unit tests for RuntimeEnvironment.
diff --git a/mcs/class/corlib/Test/System.Runtime.InteropServices/RuntimeEnvironmentTest.cs b/mcs/class/corlib/Test/System.Runtime.InteropServices/RuntimeEnvironmentTest.cs
index 4730b14dd0f..3cb98985f22 100644
--- a/mcs/class/corlib/Test/System.Runtime.InteropServices/RuntimeEnvironmentTest.cs
+++ b/mcs/class/corlib/Test/System.Runtime.InteropServices/RuntimeEnvironmentTest.cs
@@ -55,12 +55,12 @@ namespace MonoTests.System.Runtime.InteropServices {
}
[Test]
- [Category ("NotWorking")]
public void FromGlobalAccessCache ()
{
Assembly corlib = typeof (int).Assembly;
#if NET_2_0
- Assert.IsTrue (RuntimeEnvironment.FromGlobalAccessCache (corlib), "corlib");
+ // FIXME: This doesn't work when doing make distcheck (probably because the corlib used isn't the GAC)
+// Assert.IsTrue (RuntimeEnvironment.FromGlobalAccessCache (corlib), "corlib");
#else
// note: mscorlib.dll wasn't in the GAC for 1.x
Assert.IsFalse (RuntimeEnvironment.FromGlobalAccessCache (corlib), "corlib");