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:
authorMartin Baulig <martin@novell.com>2002-07-21 05:26:20 +0400
committerMartin Baulig <martin@novell.com>2002-07-21 05:26:20 +0400
commit8130298d16922841011f36ab230f22bed57d68cf (patch)
tree22608fb3c5dd7c90b5c7b7c4bf318aab5d7e261c /mcs/tests/test-52.cs
parentd0a3d9441b2b69af36b56fe6b1d56ea150f22a23 (diff)
2002-07-20 Martin Baulig <martin@gnome.org>
* test-38.cs: This test now passes with MCS. Added a few more test cases to it. * test-52.cs: The order of the elements returned by `IDictionary.Keys' is unspecified. * makefile: The following tests fail under linux and have been moved to TEST_NOPASS: 45, 53, 91, 106, 107, 122, 132, 133. (test-compiler-mono): Compile all the TEST_NOPASS tests, but don't run them. svn path=/trunk/mcs/; revision=5980
Diffstat (limited to 'mcs/tests/test-52.cs')
-rwxr-xr-xmcs/tests/test-52.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-52.cs b/mcs/tests/test-52.cs
index c6b0726c3a7..fe5415c1ea7 100755
--- a/mcs/tests/test-52.cs
+++ b/mcs/tests/test-52.cs
@@ -70,7 +70,7 @@ class X {
total2 = total2 + name;
}
- if (total2 != "AB")
+ if ((total2 != "AB") && (total2 != "BA"))
return 3;
ArrayList list = new ArrayList ();