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:
-rw-r--r--mcs/class/doc/API-notes165
-rw-r--r--mcs/class/doc/NUnitGuidelines110
-rw-r--r--mcs/class/doc/TemplateTest.cs65
-rw-r--r--mcs/class/doc/rotor-test-listing2437
-rw-r--r--mcs/class/doc/rotor-test-notes135
5 files changed, 2912 insertions, 0 deletions
diff --git a/mcs/class/doc/API-notes b/mcs/class/doc/API-notes
new file mode 100644
index 00000000000..8ec2a9a4b1a
--- /dev/null
+++ b/mcs/class/doc/API-notes
@@ -0,0 +1,165 @@
+Please add your comments to this file about mismatches between the API
+documentation and the implementation in the Microsoft or ECMA implementations
+of the class libraries.
+
+* Type.GetCustomAttributes(Type, bool)
+
+ Documentation does not mention that an ArgumentNullException is
+ thrown if Type is a null value.
+
+* Rectangle.IsEmpty and RectangleF.IsEmpty
+
+ Documentation says "This property returns true if the Width, Height, X,
+ and Y properties of this RectangleF all have values of zero; otherwise,
+ false." Reality: returns TRUE if width or height are equal 0.
+
+* Array.CreateInstance (Type, long[] lengths)
+
+ Docs say if lengths is null, it will throw an ArgumentNullException,
+ but actually .NET 1.1 throws a NullReferenceException.
+
+* String Constructor (Char[], Int32, Int32):
+
+ String s = new String ((char[])null, 0, 0) throws a null, but the docs
+ say it shouldn't.
+
+* File.Exists:
+
+ File.Exists(null) returns false whenever there is a problem with the
+ path or permissions. This is a security feature which prevents the
+ abuse of this method to discover what files might exist on the sytem.
+ This doc error has been confirmed with MS and should be fixed in
+ the next version of the docs.
+
+* SocketPermission.IsSubsetOf:
+
+ 10.11.4.* IsSubsetOf 10.11.*.* returns false --> which is incorrect
+
+* SecurityElement.IsValid* ():
+
+ All return incorrect results. E.g. IsValidTag ("&") returns true while
+ it should be false and IsValidAttributeValue ("1 >= 2") returns false
+ while this should be true.
+
+* SocketPermission.Union (null):
+
+ Doesn't throw an ArgumentNullException.
+
+* System.Net.Cookie.Value:
+
+ Spec says property cannot accept the semicolon and comma characters,
+ yet it does.
+
+* System.Net.Cookie.Domain:
+
+ Setting this property has no effect on ToString
+
+* System.Net.Cookie Path:
+
+ Setting this property has no effect on ToString
+
+* System.Net.CookieCollection:
+
+ The ReadOnly property has a getter only, which always returns true.
+ Yet you can always add Cookie's.
+
+* Array.IList.Contains(object):
+ Throws an exception when called on a multi-dimensional array. Docs
+ do not say this. Similar to Array.IList.IndexOf(object).
+
+* Version.CompareTo(null):
+
+ Does not throw an exception. Any version compared to null is
+ considered to be subsequent to null.
+
+* BitConverter.To*():
+
+ The docs say it should be ArgumentOutOfRangeException in the
+ case where "startIndex is less than zero or greater than the
+ length of value minus 2.", but the mscorlib throws an
+ ArgumentException.
+
+* Guid.Guid(string) ctor:
+
+ The documentation says this ctor accepts (amongst others) the format
+ "{0xdddddddd,0xdddd,0xdddd,{0xdd},{0xdd},{0xdd},{0xdd},{0xdd},{0xdd},
+ {0xdd},{0xdd}}". As implemented in mscorlib, however, it accepts:
+ "{0xdddddddd,0xdddd,0xdddd,{0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xdd}.
+
+* Guid.ToString(string format):
+
+ The documentation specifies that if the format is the empty
+ string or null, this is equivalant to a format "N". In
+ mscorlib, the format "D" is taken here.
+
+* String.Compare (String, Int32, String, Int32, Int32):
+
+ The documentation is a bit confusing.
+
+ In the "Remarks" section it says
+
+ >> The number of characters compared is the lesser of the length of
+ strA less indexA, the length of strB less indexB, and length.
+
+ In the "Exception" section it says a condition for the
+ ArgumentOutOfRangeException
+
+ >> The sum of indexA and length is greater than strA. Length.
+ >> -or-
+ >> The sum of indexB and length is greater than strB. Length.
+ >> -or-
+ >> indexA, indexB, or length is negative.
+
+ The latter implies that Compare ("ab", 0, "abcdef", 0, 3) will
+ throw an exception - but the "Remarks" section implies that it will
+ not. Both mscorlib.dll and our class libraries behave according to
+ the "Remarks" section.
+
+* TypeBuilder.GetInterfaces
+
+ This method does not return all the interfaces as documented,
+ it only returns the interfaces that are implemented by this
+ class, but not the interfaces that are exposed by the parent
+ classes
+
+* Array.CopyTo (Array, int).
+
+ According to the documentation, an ArgumentException is thrown
+ if either "index is equal to or larger than the size of the
+ array" or "the number of elements in the source array is
+ greater than the available space from index to the end of the
+ destination array".
+
+ The first condition is wrong, an exception is not thrown if
+ index is equal to the length of array, but the source array
+ contains zero elements:
+
+ int[] src = new int [0];
+ int[] dest = new int [0];
+ src.CopyTo (dest, 0)
+
+* Assembly.Load (string)
+
+ The documentation states that the argument is the 'display name'
+ of an assembly (eg 'System.Data') but since v1 this method will
+ only successfully load an assembly if a full reference is given.
+ The docs even give the following example:
+
+ Assembly SampleAssembly;
+ // Load the assembly by providing the type name.
+ SampleAssembly = Assembly.Load("System.Data");
+
+ which fails with a FileNotFoundException. Apparently the method
+ to use for loading an assembly given a display name is
+ Assembly.LoadWithPartialName (string).
+
+* SortedList.Clear ()
+
+ The documentation claims that the Capacity of the sorted list
+ will not change, but it does.
+
+* StringBuilder.Insert (int index, string value, int count)
+
+ It throws an exception for count < 1 instead of count < 0, which
+ is what ECMA says.
+
diff --git a/mcs/class/doc/NUnitGuidelines b/mcs/class/doc/NUnitGuidelines
new file mode 100644
index 00000000000..5b7b87f5d95
--- /dev/null
+++ b/mcs/class/doc/NUnitGuidelines
@@ -0,0 +1,110 @@
+Mono NUnit Test Guidelines and Best Practices
+
+Authors: Nick Drochak <ndrochak@@gol.com>
+ Martin Baulig <martin@@gnome.org>
+Last Update: 2003-05-11
+Rev: 0.5
+
+* Purpose
+
+This document captures all the good ideas people have had about
+writing NUnit tests for the mono project. This document will be useful
+for anyone who writes or maintains unit tests.
+
+* Other resources
+ - mcs/class/README has an explanation of the build process and
+ how it relates to the tests.
+ - http://nunit.org is the place to find out about NUnit
+
+* Getting Started
+
+If you are new to writing NUnit tests, there is a template you may use
+to help get started. The file is:
+
+ mcs/class/doc/TemplateTest.cs
+
+Save a copy of this file in the appropriate test subdirecty (see
+below), and replace all the {text} markers with appropriate
+code. Comments in the template are there to guide you. You should also
+look at existing tests to see how other people have written them.
+mcs/class/corlib/Test/System.Collections/CollectionBaseTest.cs is a
+small one that might help.
+
+The directory that will contain your new file depends on the
+assembly/namespace of the class for which you are creating the
+tests. Under mcs/class there is a directory for each assembly. In each
+assembly there is a Test directory, e.g. mcs/class/corlib/Test. In the
+Test directory there are sub-directories for each namespace in the
+assembly, e.g. mcs/class/corlib/Test/Sytem. Put your new test file in
+the appropriate sub-directory under Test for the class you are
+testing.
+
+Once all of that is done, you can do a 'make test' from the top mcs
+directory. Your test class will be automagically included in the
+build and the tests will be run along with all the others.
+
+* Tips
+
+-- Provide an unique error message for Assertion.Assert ()
+
+Include an unique message for each Assertion.Assert () so that when the assert
+fails, it is trivial to locate the failing one. Otherwise, it may be
+difficult to determine which part of the test is failing. A good way
+to ensure unique messages is to use something like #A01, #A02 etc.
+
+ Bad:
+
+ Assertion.AssertEquals ("array match", compare[0], i1[0]);
+ Assertion.AssertEquals ("array match", compare[1], i1[1]);
+ Assertion.AssertEquals ("array match", compare[2], i1[2]);
+ Assertion.AssertEquals ("array match", compare[3], i1[3]);
+
+ Good:
+
+ Assertion.AssertEquals ("#A01", compare[0], i1[0]);
+ Assertion.AssertEquals ("#A02", compare[1], i1[1]);
+ Assertion.AssertEquals ("#A03", compare[2], i1[2]);
+ Assertion.AssertEquals ("#A04", compare[3], i1[3]);
+
+Once you used such a number in an Assertion.Assert (), don't change it later on -
+people might use it it identify the test in bug reports or in mailing
+lists.
+
+-- Use Assertion.AssertEquals () to compare things, not Assertion.Assert ().
+
+Never compare two values with Assertion.Assert () - if the test fails, people
+have no idea what went wrong while Assertion.AssertEquals () reports the failed
+value. Also, make sure the second paramter is the expected value, and the third
+parameter is the actual value.
+
+ Bad:
+
+ Assertion.Assert ("A01", myTicks[0] == t1.Ticks);
+
+ Good:
+
+ Assertion.AssertEquals ("A01", myTicks[0], t1.Ticks);
+
+-- Namespace
+
+Please keep the namespace within each test directory consistent. Of course
+you can use subnamespaces as you like - especially for subdirectories of
+your testsuite.
+
+-- Test your test with the microsoft runtime
+
+If possible, try to run your testsuite with the Microsoft runtime on
+Windows and make sure all tests in it pass. This is especially
+important if you're writing a totally new testcase - without this
+check you can never be sure that your testcase contains no bugs ....
+
+Don't worry if you're writing your test on Linux, other people can
+test it for you on Windows.
+
+Sometimes you may discover that a test doesn't show the expected
+result when run with the Microsoft runtime - either because there is a
+bug in their runtime or something is misleading or wrong in their
+documentation. In this case, please put a detailed description of the
+problem to mcs/class/doc/API-notes and do also report it to the list -
+we'll forward this to the Microsoft people from time to time to help
+them fix their documentation and runtime.
diff --git a/mcs/class/doc/TemplateTest.cs b/mcs/class/doc/TemplateTest.cs
new file mode 100644
index 00000000000..c255a141f20
--- /dev/null
+++ b/mcs/class/doc/TemplateTest.cs
@@ -0,0 +1,65 @@
+// this is a template for making NUnit version 2 tests. Text enclosed in curly
+// brackets (and the brackets themselves) should be replaced by appropriate
+// code.
+
+// {File Name}.cs - NUnit Test Cases for {explain here}
+//
+// {Author Name} ({Author email Address})
+//
+// (C) {Copyright holder}
+//
+
+// these are the standard namespaces you will need. You may need to add more
+// depending on your tests.
+using NUnit.Framework;
+using System;
+
+// all test namespaces start with "MonoTests." Append the Namespace that
+// contains the class you are testing, e.g. MonoTests.System.Collections
+namespace MonoTests.{Namespace}
+{
+
+// the class name should end with "Test" and start with the name of the class
+// you are testing, e.g. CollectionBaseTest
+[TestFixture]
+public class {Class to be tested}Test : Assertion {
+
+ // this method is run before each [Test] method is called. You can put
+ // variable initialization, etc. here that is common to each test.
+ // Just leave the method empty if you don't need to use it.
+ // The name of the method does not matter; the attribute does.
+ [SetUp]
+ public void GetReady() {}
+
+ // this method is run after each Test* method is called. You can put
+ // clean-up code, etc. here. Whatever needs to be done after each test.
+ // Just leave the method empty if you don't need to use it.
+ // The name of the method does not matter; the attribute does.
+ [TearDown]
+ public void Clean() {}
+
+ // this is just one of probably many test methods in your test class.
+ // each test method must be adorned with [Test]. All methods in your class
+ // adorned with [Test] will be automagically called by the NUnit
+ // framework.
+ [Test]
+ public void {Something} {
+ // inside here you will exercise your class and then call Assert()
+ }
+
+ // An nice way to test for exceptions the class under test should
+ // throw is:
+ /*
+ [Test]
+ [ExpectedException(typeof(ArgumentNullException))]
+ public void OnValid() {
+ ConcreteCollection myCollection;
+ myCollection = new ConcreteCollection();
+ ....
+ AssertEquals ("#UniqueID", expected, actual);
+ ....
+ Fail ("Message");
+ }
+ */
+
+}
diff --git a/mcs/class/doc/rotor-test-listing b/mcs/class/doc/rotor-test-listing
new file mode 100644
index 00000000000..f81ef280477
--- /dev/null
+++ b/mcs/class/doc/rotor-test-listing
@@ -0,0 +1,2437 @@
+tests/bcl/dev/reflection/coreflectioninsensitivelookup.exe
+tests/bcl/dev/serialization/coserializationregression.exe
+tests/bcl/dev/serialization/covaluetypefixup.exe
+tests/bcl/protected/dictionarybaseonclearcompletetest.exe
+tests/bcl/protected/collectionbasegetinnerlisttest.exe
+tests/bcl/protected/collectionbasegetlisttest.exe
+tests/bcl/protected/collectionbaseonclearcompletetest.exe
+tests/bcl/protected/collectionbaseoncleartest.exe
+tests/bcl/protected/collectionbaseoninsertcompletetest.exe
+tests/bcl/protected/collectionbaseoninserttest.exe
+tests/bcl/protected/collectionbaseonremovecompletetest.exe
+tests/bcl/protected/collectionbaseonremovetest.exe
+tests/bcl/protected/collectionbaseonsetcompletetest.exe
+tests/bcl/protected/collectionbaseonsettest.exe
+tests/bcl/protected/collectionbaseonvalidatetest.exe
+tests/bcl/protected/dictionarybasegetdictionarytest.exe
+tests/bcl/protected/dictionarybasegetinnerhashtabletest.exe
+tests/bcl/protected/dictionarybaseoncleartest.exe
+tests/bcl/protected/dictionarybaseongettest.exe
+tests/bcl/protected/dictionarybaseoninsertcompletetest.exe
+tests/bcl/protected/dictionarybaseoninserttest.exe
+tests/bcl/protected/dictionarybaseonremovecompletetest.exe
+tests/bcl/protected/dictionarybaseonremovetest.exe
+tests/bcl/protected/dictionarybaseonsetcompletetest.exe
+tests/bcl/protected/dictionarybaseonsettest.exe
+tests/bcl/protected/dictionarybaseonvalidatetest.exe
+tests/bcl/protected/hashtablegetcomparertest.exe
+tests/bcl/protected/streamcreatewaithandlertest.exe
+# tests/bcl/security/regex/co8834regex.exe
+tests/bcl/security/resources/co8651publicresources.exe
+tests/bcl/security/resources/co8651support.exe
+tests/bcl/security/resources/co8652privateresources.exe
+tests/bcl/security/resources/co8652support.exe
+# tests/bcl/security/serialization/co8647binaryformatter.exe
+# tests/bcl/security/serialization/co8649formatterservices.exe
+# tests/bcl/security/serialization/co8650objectmanager.exe
+tests/bcl/system/array/co1078clear.exe
+tests/bcl/system/array/co1262copy.exe
+tests/bcl/system/array/co1592clone.exe
+tests/bcl/system/array/co3742createinstance_type_i.exe
+tests/bcl/system/array/co3743createinstance_type_ii.exe
+tests/bcl/system/array/co3744createinstance_type_iii.exe
+tests/bcl/system/array/co3745createinstance_type_iarr.exe
+tests/bcl/system/array/co3746createinstance_type_iarr_iarr.exe
+tests/bcl/system/array/co3747getvalue_i.exe
+tests/bcl/system/array/co3748getvalue_ii.exe
+tests/bcl/system/array/co3749getvalue_iii.exe
+tests/bcl/system/array/co3750setvalue_vi.exe
+tests/bcl/system/array/co3751setvalue_vii.exe
+tests/bcl/system/array/co3752setvalue_viii.exe
+tests/bcl/system/array/co3753getvalue_iarr.exe
+tests/bcl/system/array/co3754setvalue_viarr.exe
+tests/bcl/system/array/co3756copy_aai.exe
+tests/bcl/system/array/co3757binarysearch_oo.exe
+tests/bcl/system/array/co3758binarysearch_oiio.exe
+tests/bcl/system/array/co3759binarysearch_ooi.exe
+tests/bcl/system/array/co3760binarysearch_oiioi.exe
+tests/bcl/system/array/co3761indexof_oo.exe
+tests/bcl/system/array/co3762indexof_ooi.exe
+tests/bcl/system/array/co3763indexof_ooii.exe
+tests/bcl/system/array/co3764lastindexof_oo.exe
+tests/bcl/system/array/co3765lastindexof_ooi.exe
+tests/bcl/system/array/co3766lastindexof_ooii.exe
+tests/bcl/system/array/co3767reverse_o.exe
+tests/bcl/system/array/co3768reverse_oii.exe
+tests/bcl/system/array/co3769sort_o.exe
+tests/bcl/system/array/co3770sort_oii.exe
+tests/bcl/system/array/co3771sort_oiii.exe
+tests/bcl/system/array/co3772sort_oi.exe
+tests/bcl/system/array/co3773sort_oo.exe
+tests/bcl/system/array/co3774sort_ooi.exe
+tests/bcl/system/array/co3775sort_ooii.exe
+tests/bcl/system/array/co3776sort_ooiii.exe
+tests/bcl/system/array/co3777aslist.exe
+tests/bcl/system/array/co3795copyto.exe
+tests/bcl/system/array/co3796getenumerator.exe
+tests/bcl/system/array/co3797get_count.exe
+tests/bcl/system/array/co4385getupperbound.exe
+tests/bcl/system/array/co4386getlowerbound.exe
+tests/bcl/system/array/co5126getlength.exe
+tests/bcl/system/array/co5127getlength_int.exe
+tests/bcl/system/array/co5149get_rank.exe
+tests/bcl/system/array/co6001gethashcode.exe
+tests/bcl/system/array/co6002gettype.exe
+tests/bcl/system/array/co6003isfixedsize.exe
+tests/bcl/system/array/co6004isreadonly.exe
+tests/bcl/system/array/co6005issynchronized.exe
+tests/bcl/system/array/co6006syncroot.exe
+tests/bcl/system/array/co6007tostring.exe
+tests/bcl/system/attribute/co4752getcustomattributes_meminfo_type.exe
+tests/bcl/system/attribute/co4763getcustomattributes_meminfo.exe
+tests/bcl/system/attribute/co4764isdefined_meminfo_type.exe
+tests/bcl/system/attribute/co4765getcustomattributes_paraminfo_type.exe
+tests/bcl/system/attribute/co4766getcustomattributes_paraminfo.exe
+tests/bcl/system/attribute/co4767isdefined_paraminfo_type.exe
+tests/bcl/system/attribute/co4768getcustomattributes_meminfo.exe
+tests/bcl/system/attribute/co4769getcustomattributes_paraminfo_type.exe
+tests/bcl/system/bitconverter/co1230getbytes_int.exe
+tests/bcl/system/bitconverter/co1231getbytes_short.exe
+tests/bcl/system/bitconverter/co1232getbytes_char.exe
+tests/bcl/system/bitconverter/co1233getbytes_long.exe
+tests/bcl/system/bitconverter/co1235toint32.exe
+tests/bcl/system/bitconverter/co1237toint16.exe
+tests/bcl/system/bitconverter/co1239toint64.exe
+tests/bcl/system/bitconverter/co1241tostring.exe
+tests/bcl/system/bitconverter/co1243toboolean.exe
+tests/bcl/system/bitconverter/co1245getbytes_double.exe
+tests/bcl/system/bitconverter/co3431getbytes_float.exe
+tests/bcl/system/bitconverter/co3432todouble.exe
+tests/bcl/system/bitconverter/co3433tosingle.exe
+tests/bcl/system/bitconverter/co3434tostring_bytearr.exe
+tests/bcl/system/bitconverter/co3436tostring_bytearrint.exe
+tests/bcl/system/bitconverter/co3437tochar.exe
+tests/bcl/system/bitconverter/co5370getbytes_uint.exe
+tests/bcl/system/bitconverter/co5371getbytes_ulong.exe
+tests/bcl/system/bitconverter/co5372getbytes_ushort.exe
+tests/bcl/system/bitconverter/co5373touint16_ubarr_i.exe
+tests/bcl/system/bitconverter/co5374touint32_ubarr_i.exe
+tests/bcl/system/bitconverter/co5375touint64_ubarr_i.exe
+tests/bcl/system/bitconverter/co5452getbytes_bool.exe
+tests/bcl/system/bitconverter/co9101doubletoint64bits_dbl.exe
+tests/bcl/system/bitconverter/co9102int64bitstodouble_i64.exe
+tests/bcl/system/boolean/co4214gethashcode.exe
+tests/bcl/system/boolean/co4215equals.exe
+tests/bcl/system/boolean/co4216parse.exe
+tests/bcl/system/boolean/co4217tostring.exe
+tests/bcl/system/boolean/co4218tostring_boolean.exe
+tests/bcl/system/boolean/co5026compareto.exe
+tests/bcl/system/boolean/co5712iconvertible_boolean.exe
+tests/bcl/system/boolean/co6000parse.exe
+tests/bcl/system/buffer/co3829blockcopy.exe
+tests/bcl/system/buffer/co3830bytelength_a.exe
+tests/bcl/system/buffer/co3831getbyte_ai.exe
+tests/bcl/system/buffer/co3832setbyte_aibyte.exe
+tests/bcl/system/byte/co5035compareto.exe
+tests/bcl/system/byte/co5036equals.exe
+tests/bcl/system/byte/co5038gethashcode.exe
+tests/bcl/system/byte/co5039tostring.exe
+tests/bcl/system/byte/co5040tostring_byte.exe
+tests/bcl/system/byte/co5041parse_str.exe
+tests/bcl/system/byte/co5042parse_int.exe
+tests/bcl/system/byte/co5043parse_int_nfi.exe
+tests/bcl/system/byte/co5044tostring_str.exe
+tests/bcl/system/byte/co5045tostring_str_ifp.exe
+tests/bcl/system/byte/co5117format_str_ifp.exe
+tests/bcl/system/byte/co5713iconvertible_byte.exe
+tests/bcl/system/byte/co6001parse_str_ifp.exe
+tests/bcl/system/byte/co7055gettypecode.exe
+tests/bcl/system/byte/co8637parse_str_ifp.exe
+tests/bcl/system/char/char_gettypecode.exe
+tests/bcl/system/char/char_iscontrol_str_i.exe
+tests/bcl/system/char/char_isdigit_str_i.exe
+tests/bcl/system/char/char_isletterordigit_str_i.exe
+tests/bcl/system/char/char_isletter_str_i.exe
+tests/bcl/system/char/char_islower_str_i.exe
+tests/bcl/system/char/char_isnumber_char.exe
+tests/bcl/system/char/char_isnumber_str_i.exe
+tests/bcl/system/char/char_ispunctuation_str_i.exe
+tests/bcl/system/char/char_isseparator_char.exe
+tests/bcl/system/char/char_isseparator_str_i.exe
+tests/bcl/system/char/char_issurrogate_char.exe
+tests/bcl/system/char/char_issurrogate_str_i.exe
+tests/bcl/system/char/char_issymbol_char.exe
+tests/bcl/system/char/char_issymbol_str_i.exe
+tests/bcl/system/char/char_isupper_str_i.exe
+tests/bcl/system/char/char_iswhitespace_str_i.exe
+# tests/bcl/system/char/co4233gethashcode.exe
+tests/bcl/system/char/co4234equals.exe
+tests/bcl/system/char/co4235tostring.exe
+tests/bcl/system/char/co4236tostring.exe
+tests/bcl/system/char/co4237isdigit.exe
+tests/bcl/system/char/co4269isletter.exe
+tests/bcl/system/char/co4270iswhitespace.exe
+tests/bcl/system/char/co4271toupper.exe
+tests/bcl/system/char/co4272tolower.exe
+tests/bcl/system/char/co4273isupper.exe
+tests/bcl/system/char/co4274islower.exe
+tests/bcl/system/char/co4275ispunctuation.exe
+tests/bcl/system/char/co4276isisocontrol.exe
+tests/bcl/system/char/co5326compareto.exe
+tests/bcl/system/char/co5327parse.exe
+tests/bcl/system/char/co5714iconvertible_char.exe
+tests/bcl/system/char/co7054gettypecode.exe
+tests/bcl/system/char/co8001isletterordigit_char.exe
+tests/bcl/system/char/co8002tolower_char_cultinfo.exe
+tests/bcl/system/char/co8003toupper_char_cultinfo.exe
+tests/bcl/system/char/co8854argumentchecking.exe
+tests/bcl/system/char/getnumericvalue_char.exe
+tests/bcl/system/char/getnumericvalue_str_i.exe
+tests/bcl/system/char/getunicodecategory_char.exe
+tests/bcl/system/char/getunicodecategory_str_i.exe
+tests/bcl/system/charenumerator/co8563clone.exe
+tests/bcl/system/charenumerator/co8564get_current.exe
+tests/bcl/system/charenumerator/co8565movenext.exe
+tests/bcl/system/charenumerator/co8566reset.exe
+tests/bcl/system/collections/arraylist/co1501add_stress.exe
+tests/bcl/system/collections/arraylist/co1703getenumerator.exe
+tests/bcl/system/collections/arraylist/co1719copyto_ai.exe
+tests/bcl/system/collections/arraylist/co1720contains_o.exe
+tests/bcl/system/collections/arraylist/co1721synchronized_operations.exe
+tests/bcl/system/collections/arraylist/co1722clear.exe
+tests/bcl/system/collections/arraylist/co1723remove_o.exe
+tests/bcl/system/collections/arraylist/co1724indexof_o.exe
+tests/bcl/system/collections/arraylist/co1730adapter_i.exe
+tests/bcl/system/collections/arraylist/co2192sort.exe
+tests/bcl/system/collections/arraylist/co2450ctor.exe
+tests/bcl/system/collections/arraylist/co2452ctor_int.exe
+tests/bcl/system/collections/arraylist/co2454ctor_collection.exe
+tests/bcl/system/collections/arraylist/co2458addrange_i.exe
+tests/bcl/system/collections/arraylist/co2460binarysearch_iioi.exe
+tests/bcl/system/collections/arraylist/co2462get_capacity.exe
+tests/bcl/system/collections/arraylist/co2464copyto_iaii.exe
+tests/bcl/system/collections/arraylist/co2466get_item.exe
+tests/bcl/system/collections/arraylist/co2468getenumerator_ii.exe
+tests/bcl/system/collections/arraylist/co2470indexof_oii.exe
+tests/bcl/system/collections/arraylist/co2472insert_io.exe
+tests/bcl/system/collections/arraylist/co2474insertrange_ii.exe
+tests/bcl/system/collections/arraylist/co2476lastindexof_oii.exe
+tests/bcl/system/collections/arraylist/co2478removeat_i.exe
+tests/bcl/system/collections/arraylist/co2480removerange.exe
+tests/bcl/system/collections/arraylist/co2482reverse.exe
+tests/bcl/system/collections/arraylist/co2484set_item.exe
+tests/bcl/system/collections/arraylist/co2486set_capacity.exe
+tests/bcl/system/collections/arraylist/co2488setrange.exe
+tests/bcl/system/collections/arraylist/co2490get_count.exe
+tests/bcl/system/collections/arraylist/co2494trimtosize.exe
+tests/bcl/system/collections/arraylist/co3905clone.exe
+tests/bcl/system/collections/arraylist/co3906copyto_a.exe
+tests/bcl/system/collections/arraylist/co3907fixedsize_il.exe
+tests/bcl/system/collections/arraylist/co3908fixedsize_al.exe
+tests/bcl/system/collections/arraylist/co3909get_isreadonly.exe
+tests/bcl/system/collections/arraylist/co3910readonly_al.exe
+tests/bcl/system/collections/arraylist/co3911readonly_il.exe
+tests/bcl/system/collections/arraylist/co3919synchronized_il.exe
+tests/bcl/system/collections/arraylist/co3920get_issynchronized.exe
+tests/bcl/system/collections/arraylist/co3928lastindexof_oi.exe
+tests/bcl/system/collections/arraylist/co3929lastindexof_o.exe
+tests/bcl/system/collections/arraylist/co3930indexof_oi.exe
+tests/bcl/system/collections/arraylist/co3931repeat_objint.exe
+tests/bcl/system/collections/arraylist/co3932reverse.exe
+tests/bcl/system/collections/arraylist/co3933sort_i.exe
+tests/bcl/system/collections/arraylist/co3934sort.exe
+tests/bcl/system/collections/arraylist/co3935toarray.exe
+tests/bcl/system/collections/arraylist/co3936toarray_tp.exe
+tests/bcl/system/collections/arraylist/co3940get_syncroot.exe
+tests/bcl/system/collections/arraylist/co3966wrappertests.exe
+tests/bcl/system/collections/arraylist/co8597binarysearch_obj.exe
+tests/bcl/system/collections/arraylist/co8598binarysearch_obj_ic.exe
+tests/bcl/system/collections/arraylist/co8599get_isfixedsize.exe
+tests/bcl/system/collections/arraylist/co8600getrange_ii.exe
+tests/bcl/system/collections/bitarray/co1550and.exe
+tests/bcl/system/collections/bitarray/co1551or.exe
+tests/bcl/system/collections/bitarray/co1552xor.exe
+tests/bcl/system/collections/bitarray/co1553not.exe
+tests/bcl/system/collections/bitarray/co1554get_length.exe
+tests/bcl/system/collections/bitarray/co1555get.exe
+tests/bcl/system/collections/bitarray/co1556set.exe
+tests/bcl/system/collections/bitarray/co1557setall.exe
+tests/bcl/system/collections/bitarray/co1558set_length.exe
+tests/bcl/system/collections/bitarray/co3118ctor_int.exe
+tests/bcl/system/collections/bitarray/co3120ctor_int_bool.exe
+tests/bcl/system/collections/bitarray/co3122ctor_byte_array.exe
+tests/bcl/system/collections/bitarray/co3124ctor_intarray.exe
+tests/bcl/system/collections/bitarray/co3126ctor_bitarray.exe
+tests/bcl/system/collections/bitarray/co3968copyto_arrint.exe
+tests/bcl/system/collections/bitarray/co3969ctor_boolarray.exe
+tests/bcl/system/collections/bitarray/co3970get_count.exe
+tests/bcl/system/collections/bitarray/co3971get_isreadonly.exe
+tests/bcl/system/collections/bitarray/co3972get_issynchronized.exe
+tests/bcl/system/collections/bitarray/co3973get_syncroot.exe
+tests/bcl/system/collections/bitarray/co3974get_item.exe
+tests/bcl/system/collections/bitarray/co3975set_item.exe
+tests/bcl/system/collections/bitarray/co3976getenumerator.exe
+tests/bcl/system/collections/bitarray/co8822clone.exe
+tests/bcl/system/collections/caseinsensitivecomparer/co8601ctor.exe
+tests/bcl/system/collections/caseinsensitivecomparer/co8602ctor_ci.exe
+tests/bcl/system/collections/caseinsensitivecomparer/co8603get_default.exe
+tests/bcl/system/collections/caseinsensitivecomparer/co8604compare_oo.exe
+tests/bcl/system/collections/caseinsensitivehashcodeprovider/co3951ctor.exe
+tests/bcl/system/collections/caseinsensitivehashcodeprovider/co3952gethashcode_obj.exe
+tests/bcl/system/collections/caseinsensitivehashcodeprovider/co8605ctor_ci.exe
+tests/bcl/system/collections/caseinsensitivehashcodeprovider/co8606getdefault.exe
+tests/bcl/system/collections/collectionbase/co3995allmethods.exe
+tests/bcl/system/collections/comparer/co1672compare_oo.exe
+tests/bcl/system/collections/dictionarybase/co3996allmethods.exe
+tests/bcl/system/collections/dictionaryentry/co1727ctor_oo.exe
+tests/bcl/system/collections/dictionaryentry/co8607get_key.exe
+tests/bcl/system/collections/dictionaryentry/co8608get_value.exe
+tests/bcl/system/collections/dictionaryentry/co8609set_key.exe
+tests/bcl/system/collections/dictionaryentry/co8610set_value.exe
+tests/bcl/system/collections/hashtable/co1657copyto_ai.exe
+tests/bcl/system/collections/hashtable/co1658ctor_df.exe
+tests/bcl/system/collections/hashtable/co1659ctor_ifii.exe
+tests/bcl/system/collections/hashtable/co1694remove_o.exe
+tests/bcl/system/collections/hashtable/co2350remove.exe
+tests/bcl/system/collections/hashtable/co3914get_isreadonly.exe
+tests/bcl/system/collections/hashtable/co3922synchronized.exe
+tests/bcl/system/collections/hashtable/co3923get_issynchronized.exe
+tests/bcl/system/collections/hashtable/co3941ctor_intihpic.exe
+tests/bcl/system/collections/hashtable/co3942clone.exe
+tests/bcl/system/collections/hashtable/co3944get_syncroot.exe
+# tests/bcl/system/collections/hashtable/co3949getobjectdata_sersc.exe
+tests/bcl/system/collections/hashtable/co3950ondeserialization_objde.exe
+tests/bcl/system/collections/hashtable/co4307ctor.exe
+tests/bcl/system/collections/hashtable/co4308ctor_int.exe
+tests/bcl/system/collections/hashtable/co4310add_stress.exe
+tests/bcl/system/collections/hashtable/co4309ctor_int_float.exe
+tests/bcl/system/collections/hashtable/co4311ctor_dictionary.exe
+tests/bcl/system/collections/hashtable/co8611ctor_iii.exe
+tests/bcl/system/collections/hashtable/co8612ctor_isii.exe
+tests/bcl/system/collections/hashtable/co8613get_isfixedsize.exe
+tests/bcl/system/collections/queue/co1700ctor_int_float.exe
+tests/bcl/system/collections/queue/co1702dequeue.exe
+tests/bcl/system/collections/queue/co1704enqueue.exe
+tests/bcl/system/collections/queue/co1708get_count.exe
+tests/bcl/system/collections/queue/co1725allsigns_queue_copycat.exe
+tests/bcl/system/collections/queue/co3100ctor_int.exe
+tests/bcl/system/collections/queue/co3102ctor.exe
+tests/bcl/system/collections/queue/co3106peek.exe
+tests/bcl/system/collections/queue/co3110toarray.exe
+tests/bcl/system/collections/queue/co3946get_syncroot.exe
+tests/bcl/system/collections/queue/co6078synchronized_queue.exe
+tests/bcl/system/collections/queue/co8614contains_o.exe
+tests/bcl/system/collections/queue/co8615clone.exe
+tests/bcl/system/collections/queue/co8823trimtosize.exe
+tests/bcl/system/collections/readonlycollectionbase/co3997allmethods.exe
+tests/bcl/system/collections/sortedlist/co3718getvaluelist.exe
+tests/bcl/system/collections/sortedlist/co3916get_isreadonly.exe
+tests/bcl/system/collections/sortedlist/co3924synchronized.exe
+tests/bcl/system/collections/sortedlist/co3925get_issynchronized.exe
+tests/bcl/system/collections/sortedlist/co3948get_syncroot.exe
+tests/bcl/system/collections/sortedlist/co3953multimethods.exe
+tests/bcl/system/collections/sortedlist/co3954clone.exe
+tests/bcl/system/collections/sortedlist/co3977wrappertests.exe
+tests/bcl/system/collections/sortedlist/co4321ctor_icomparer.exe
+tests/bcl/system/collections/sortedlist/co4322ctor_icomparer_int.exe
+tests/bcl/system/collections/sortedlist/co4323ctor.exe
+tests/bcl/system/collections/sortedlist/co4324ctor_dictionary.exe
+tests/bcl/system/collections/sortedlist/co4326containskey.exe
+tests/bcl/system/collections/sortedlist/co4327containsvalue.exe
+tests/bcl/system/collections/sortedlist/co4328getobject.exe
+tests/bcl/system/collections/sortedlist/co4329clear.exe
+tests/bcl/system/collections/sortedlist/co4330getbyindex_i.exe
+tests/bcl/system/collections/sortedlist/co4331indexofkey.exe
+tests/bcl/system/collections/sortedlist/co4332indexofvalue.exe
+tests/bcl/system/collections/sortedlist/co4334get_count.exe
+tests/bcl/system/collections/sortedlist/co4335get_keys.exe
+tests/bcl/system/collections/sortedlist/co4336get_values.exe
+tests/bcl/system/collections/sortedlist/co4338getenumerator.exe
+tests/bcl/system/collections/sortedlist/co4339getkeylist.exe
+tests/bcl/system/collections/sortedlist/co4340remove_object.exe
+tests/bcl/system/collections/sortedlist/co4341removeat_int.exe
+tests/bcl/system/collections/sortedlist/co4345trimtosize.exe
+tests/bcl/system/collections/sortedlist/co4346ctor_dictionary_icomparer.exe
+tests/bcl/system/collections/sortedlist/co4347setobject_object.exe
+tests/bcl/system/collections/sortedlist/co4348getkey.exe
+tests/bcl/system/collections/sortedlist/co8616get_capacity.exe
+tests/bcl/system/collections/sortedlist/co8617set_capacity.exe
+tests/bcl/system/collections/sortedlist/co8618get_isfixedsize.exe
+tests/bcl/system/collections/specialized/bitvector32/co8662ctor.exe
+tests/bcl/system/collections/specialized/bitvector32/co8663ctor_int.exe
+tests/bcl/system/collections/specialized/bitvector32/co8664ctor_bitvector32.exe
+tests/bcl/system/collections/specialized/bitvector32/co8665createmask.exe
+tests/bcl/system/collections/specialized/bitvector32/co8666createmask_int.exe
+tests/bcl/system/collections/specialized/bitvector32/co8667createsection_short.exe
+tests/bcl/system/collections/specialized/bitvector32/co8668createsection_short_section.exe
+tests/bcl/system/collections/specialized/bitvector32/co8669equals_obj.exe
+tests/bcl/system/collections/specialized/bitvector32/co8670gethashcode.exe
+tests/bcl/system/collections/specialized/bitvector32/co8671tostring.exe
+tests/bcl/system/collections/specialized/bitvector32/co8672tostring_bv.exe
+tests/bcl/system/collections/specialized/bitvector32/co8673get_data.exe
+tests/bcl/system/collections/specialized/bitvector32/co8674get_item_section.exe
+tests/bcl/system/collections/specialized/bitvector32/co8675get_item_int.exe
+tests/bcl/system/collections/specialized/bitvector32/co8677set_item_int_bool.exe
+tests/bcl/system/collections/specialized/bitvector32/co8676set_item_section_int.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8699ctor.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8700ctor_bool.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8701ctor_int.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8702ctor_int_bool.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8709get_count.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8710get_isfixedsize.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8711get_isreadonly.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8712get_issynchronized.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8714get_keys.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8715get_syncroot.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8716get_values.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8773performance.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8704clear.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8703add_obj_obj.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8705contains_obj.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8713get_item_obj.exe
+tests/bcl/system/collections/specialized/hybriddictionary/co8717set_item_obj_obj.exe
+tests/bcl/system/collections/specialized/listdictionary/co8682ctor.exe
+tests/bcl/system/collections/specialized/listdictionary/co8683ctor_icomp.exe
+tests/bcl/system/collections/specialized/listdictionary/co8690get_count.exe
+tests/bcl/system/collections/specialized/listdictionary/co8691get_isfixedsize.exe
+tests/bcl/system/collections/specialized/listdictionary/co8692get_isreadonly.exe
+tests/bcl/system/collections/specialized/listdictionary/co8693get_issynchronized.exe
+tests/bcl/system/collections/specialized/listdictionary/co8697get_syncroot.exe
+tests/bcl/system/collections/specialized/listdictionary/co8772performance.exe
+tests/bcl/system/collections/specialized/listdictionary/co8684add_obj_obj.exe
+tests/bcl/system/collections/specialized/listdictionary/co8685clear.exe
+tests/bcl/system/collections/specialized/listdictionary/co8686contains_obj.exe
+tests/bcl/system/collections/specialized/listdictionary/co8687copyto_array_int.exe
+tests/bcl/system/collections/specialized/listdictionary/co8689remove_obj.exe
+tests/bcl/system/collections/specialized/listdictionary/co8694get_item_obj.exe
+tests/bcl/system/collections/specialized/listdictionary/co8695set_item_obj_obj.exe
+tests/bcl/system/collections/specialized/listdictionary/co8696get_keys.exe
+tests/bcl/system/collections/specialized/listdictionary/co8698get_values.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8718ctor.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8719ctor_nvc.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8720ctor_int.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8721ctor_int_nvc.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8774ctor_ihcp_ic.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8775ctor_int_ihcp_ic.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8722add_str_str.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8723clear.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8724copyto_array_int.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8725get_int.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8726get_str.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8727getkey_int.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8728getvalues_int.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8729getvalues_str.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8730haskeys.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8731remove_str.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8732set_str_str.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8733get_allkeys.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8734get_item_int.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8735get_item_str.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8736set_item_str_str.exe
+tests/bcl/system/collections/specialized/namevaluecollection/co8776add_nvc.exe
+tests/bcl/system/collections/specialized/stringcollection/co8737ctor.exe
+tests/bcl/system/collections/specialized/stringcollection/co8743getenumerator.exe
+tests/bcl/system/collections/specialized/stringcollection/co8749get_isreadonly.exe
+tests/bcl/system/collections/specialized/stringcollection/co8750get_issynchronized.exe
+tests/bcl/system/collections/specialized/stringcollection/co8752get_syncroot.exe
+tests/bcl/system/collections/specialized/stringcollection/co8738add_str.exe
+tests/bcl/system/collections/specialized/stringcollection/co8739addrange_stra.exe
+tests/bcl/system/collections/specialized/stringcollection/co8740clear.exe
+tests/bcl/system/collections/specialized/stringcollection/co8741contains_str.exe
+tests/bcl/system/collections/specialized/stringcollection/co8742copyto_stra_int.exe
+tests/bcl/system/collections/specialized/stringcollection/co8744indexof_str.exe
+tests/bcl/system/collections/specialized/stringcollection/co8745insert_int_str.exe
+tests/bcl/system/collections/specialized/stringcollection/co8746remove_str.exe
+tests/bcl/system/collections/specialized/stringcollection/co8747removeat_int.exe
+tests/bcl/system/collections/specialized/stringcollection/co8748get_count.exe
+tests/bcl/system/collections/specialized/stringcollection/co8751get_item.exe
+tests/bcl/system/collections/specialized/stringcollection/co8753set_item.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8754ctor.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8760getenumerator.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8763get_issynchronized.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8766get_syncroot.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8755add_str_str.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8756clear.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8757containskey_str.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8758containsvalue_str.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8759copyto_array_int.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8761remove_str.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8762get_count.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8764get_item_str.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8765get_keys.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8767get_values.exe
+tests/bcl/system/collections/specialized/stringdictionary/co8768set_item_str_str.exe
+tests/bcl/system/collections/specialized/stringenumerator/co8769movenext.exe
+tests/bcl/system/collections/specialized/stringenumerator/co8770reset.exe
+tests/bcl/system/collections/specialized/stringenumerator/co8771get_current.exe
+tests/bcl/system/collections/stack/co1726allsigns_stack_copycat.exe
+tests/bcl/system/collections/stack/co3947get_syncroot.exe
+tests/bcl/system/collections/stack/co3955toarray.exe
+tests/bcl/system/collections/stack/co8619clone.exe
+tests/bcl/system/collections/stack/co8620contains_obj.exe
+tests/bcl/system/convert/co1565tobyte_allsigns.exe
+tests/bcl/system/convert/co6053toboolean_all.exe
+tests/bcl/system/convert/co6054tobyte_all.exe
+tests/bcl/system/convert/co6055tochar_all.exe
+tests/bcl/system/convert/co6057todatetime_all.exe
+tests/bcl/system/convert/co6058todecimal_all.exe
+tests/bcl/system/convert/co6059todouble_all.exe
+tests/bcl/system/convert/co6060toint16_all.exe
+tests/bcl/system/convert/co6061toint32_all.exe
+tests/bcl/system/convert/co6062toint64_all.exe
+tests/bcl/system/convert/co6064tosbyte_all.exe
+tests/bcl/system/convert/co6065tosingle_all.exe
+tests/bcl/system/convert/co6067touint16_all.exe
+tests/bcl/system/convert/co6068touint32_all.exe
+tests/bcl/system/convert/co6069touint64_all.exe
+tests/bcl/system/convert/co7063isdbnull.exe
+tests/bcl/system/convert/co7064gettypecode.exe
+tests/bcl/system/convert/co8638changetype_all.exe
+tests/bcl/system/convert/co8639frombase64chararray_charr_ii.exe
+tests/bcl/system/convert/co8640frombase64string_str.exe
+tests/bcl/system/convert/co8641tobase64chararray_btarr_ii_charr_i.exe
+tests/bcl/system/convert/co8642tobase64string_all.exe
+tests/bcl/system/convert/co8826boxedobjectcheck.exe
+tests/bcl/system/datetime/bug.exe
+tests/bcl/system/datetime/co1500get_dayofweek.exe
+tests/bcl/system/datetime/co1504get_dayofyear.exe
+tests/bcl/system/datetime/co1507get_day.exe
+tests/bcl/system/datetime/co1509get_date.exe
+tests/bcl/system/datetime/co1511get_hour.exe
+tests/bcl/system/datetime/co1512addminutes.exe
+tests/bcl/system/datetime/co1513addmonths.exe
+tests/bcl/system/datetime/co1514addhours.exe
+tests/bcl/system/datetime/co1515addseconds.exe
+tests/bcl/system/datetime/co1516addmilliseconds.exe
+tests/bcl/system/datetime/co1517addyears.exe
+tests/bcl/system/datetime/co1518addticks.exe
+tests/bcl/system/datetime/co1519ctor_iiiiii.exe
+tests/bcl/system/datetime/co1520touniversaltime.exe
+tests/bcl/system/datetime/co1521tolongdatestring.exe
+tests/bcl/system/datetime/co1522get_now.exe
+tests/bcl/system/datetime/co1523get_minute.exe
+tests/bcl/system/datetime/co1524get_month.exe
+tests/bcl/system/datetime/co1525get_second.exe
+tests/bcl/system/datetime/co1526get_year.exe
+tests/bcl/system/datetime/co1527get_millisecond.exe
+tests/bcl/system/datetime/co3582adddays.exe
+tests/bcl/system/datetime/co3671ctor_iii.exe
+tests/bcl/system/datetime/co3673ctor_long.exe
+tests/bcl/system/datetime/co3867op_comparisonoperators.exe
+tests/bcl/system/datetime/co5030get_timeofday.exe
+tests/bcl/system/datetime/co5031get_today.exe
+tests/bcl/system/datetime/co5051add.exe
+# tests/bcl/system/datetime/co5052tostring.exe
+tests/bcl/system/datetime/co5053isleapyear.exe
+tests/bcl/system/datetime/co5054equals_dt_dt.exe
+tests/bcl/system/datetime/co5055equals.exe
+tests/bcl/system/datetime/co5056compareto.exe
+tests/bcl/system/datetime/co5057compare.exe
+tests/bcl/system/datetime/co5058daysinmonth.exe
+tests/bcl/system/datetime/co5059get_ticks.exe
+tests/bcl/system/datetime/co5060gethashcode.exe
+tests/bcl/system/datetime/co5061subtract_ts.exe
+tests/bcl/system/datetime/co5062subtract_dt.exe
+# tests/bcl/system/datetime/co5063toshorttimestring.exe
+# tests/bcl/system/datetime/co5064toshortdatestring.exe
+tests/bcl/system/datetime/co5065tolongtimestring.exe
+tests/bcl/system/datetime/co5066tolocaltime.exe
+tests/bcl/system/datetime/co5067fromoadate.exe
+tests/bcl/system/datetime/co5068tooadate.exe
+tests/bcl/system/datetime/co5069fromfiletime.exe
+tests/bcl/system/datetime/co5070tofiletime.exe
+# tests/bcl/system/datetime/co5303parse_str.exe
+tests/bcl/system/datetime/co5306tostring_static.exe
+# tests/bcl/system/datetime/co5330tostring_str_ifp.exe
+tests/bcl/system/datetime/co5381ctor_iiiiiid.exe
+tests/bcl/system/datetime/co5506parseexact_str_str_dtfi.exe
+tests/bcl/system/datetime/co5715iconvertible_datetime.exe
+# tests/bcl/system/datetime/co6008fromstring.exe
+tests/bcl/system/datetime/co7053gettypecode.exe
+tests/bcl/system/datetime/co7056getdatetimeformats.exe
+tests/bcl/system/datetime/co7057getdatetimeformats_char.exe
+tests/bcl/system/datetime/co7058getdatetimeformats_iserviceobjectprovider.exe
+tests/bcl/system/datetime/co7059getdatetimeformats_char_isp.exe
+# tests/bcl/system/datetime/co7060ctor_iii_calendar.exe
+# tests/bcl/system/datetime/co7061ctor_iiiiiii_calendar.exe
+# tests/bcl/system/datetime/co7062ctor_iiiiii_calendar.exe
+tests/bcl/system/datetime/co8567get_utcnow.exe
+# tests/bcl/system/datetime/co8568parseexact_str_str_ifp_dts.exe
+tests/bcl/system/datetime/co8569parseexact_str_stra_ifp_dts.exe
+tests/bcl/system/datetime/co8570parse_ifp.exe
+# tests/bcl/system/datetime/co8571parse_ifp_dts.exe
+tests/bcl/system/datetime/co8572tostring_ifp.exe
+# tests/bcl/system/datetime/co8573tostring_str.exe
+tests/bcl/system/dbnull/co7018tostring.exe
+tests/bcl/system/dbnull/co7019touint64.exe
+tests/bcl/system/dbnull/co7020touint32.exe
+tests/bcl/system/dbnull/co7021touint16.exe
+tests/bcl/system/dbnull/co7022totype_type.exe
+tests/bcl/system/dbnull/co7023tosingle.exe
+tests/bcl/system/dbnull/co7024tosbyte.exe
+tests/bcl/system/dbnull/co7025toint64.exe
+tests/bcl/system/dbnull/co7026toint32.exe
+tests/bcl/system/dbnull/co7027toint16.exe
+tests/bcl/system/dbnull/co7028todouble.exe
+tests/bcl/system/dbnull/co7029todecimal.exe
+tests/bcl/system/dbnull/co7030todatetime.exe
+tests/bcl/system/dbnull/co7031tochar.exe
+tests/bcl/system/dbnull/co7032tobyte.exe
+tests/bcl/system/dbnull/co7033toboolean.exe
+tests/bcl/system/dbnull/co7035gettypecode.exe
+tests/bcl/system/dbnull/co7036equals_object.exe
+tests/bcl/system/decimal/co3542add.exe
+tests/bcl/system/decimal/co3543op_addition.exe
+tests/bcl/system/decimal/co3545ctor_float.exe
+tests/bcl/system/decimal/co3546ctor_int.exe
+tests/bcl/system/decimal/co3547ctor_long.exe
+tests/bcl/system/decimal/co3550ctor_intarr.exe
+tests/bcl/system/decimal/co3552compare.exe
+tests/bcl/system/decimal/co3554divide.exe
+tests/bcl/system/decimal/co3555op_division.exe
+tests/bcl/system/decimal/co3556op_unaryplus.exe
+tests/bcl/system/decimal/co3557op_increment.exe
+tests/bcl/system/decimal/co3558gethashcode.exe
+tests/bcl/system/decimal/co3559equals_obj.exe
+tests/bcl/system/decimal/co3560equals_decdec.exe
+tests/bcl/system/decimal/co3561op_equality.exe
+tests/bcl/system/decimal/co3562getbits.exe
+tests/bcl/system/decimal/co3565multiply.exe
+tests/bcl/system/decimal/co3566op_multiply.exe
+tests/bcl/system/decimal/co3567negate.exe
+tests/bcl/system/decimal/co3568op_unarynegation.exe
+tests/bcl/system/decimal/co3569parse.exe
+tests/bcl/system/decimal/co3570round.exe
+tests/bcl/system/decimal/co3571subtract.exe
+tests/bcl/system/decimal/co3572op_subtraction.exe
+tests/bcl/system/decimal/co3573op_decrement.exe
+tests/bcl/system/decimal/co3574truncate.exe
+tests/bcl/system/decimal/co3575toint32.exe
+tests/bcl/system/decimal/co3576op_explicit_returns_int.exe
+tests/bcl/system/decimal/co3577toint64.exe
+tests/bcl/system/decimal/co3578op_explicit_returns_long.exe
+tests/bcl/system/decimal/co3579tobyte.exe
+tests/bcl/system/decimal/co3624toint16.exe
+tests/bcl/system/decimal/co3680todouble.exe
+tests/bcl/system/decimal/co3674ctor_double.exe
+tests/bcl/system/decimal/co3681tosbyte.exe
+tests/bcl/system/decimal/co3682tosingle.exe
+tests/bcl/system/decimal/co3683tostring.exe
+tests/bcl/system/decimal/co3684tostring_str.exe
+tests/bcl/system/decimal/co3685tostring_str.exe
+tests/bcl/system/decimal/co3686tostring_str_ifp.exe
+tests/bcl/system/decimal/co3687format_str_iformatprovider.exe
+tests/bcl/system/decimal/co3688parse_int.exe
+tests/bcl/system/decimal/co3689parse_int_nfi.exe
+tests/bcl/system/decimal/co3866op_greaterthan_etall.exe
+tests/bcl/system/decimal/co5314touint32.exe
+tests/bcl/system/decimal/co5315touint16.exe
+tests/bcl/system/decimal/co5316touint64.exe
+tests/bcl/system/decimal/co5384floor.exe
+tests/bcl/system/decimal/co5385ctor_uint.exe
+tests/bcl/system/decimal/co5386ctor_ulong.exe
+tests/bcl/system/decimal/co5387compareto.exe
+# tests/bcl/system/decimal/co5470remainder_dec_dec.exe
+# tests/bcl/system/decimal/co5471op_remainder.exe
+tests/bcl/system/decimal/co5716iconvertible_decimal.exe
+tests/bcl/system/decimal/co7052gettypecode.exe
+tests/bcl/system/decimal/co7084ctor_int32_int32_int32_boolean_byte.exe
+tests/bcl/system/decimal/co8574parse_str_ifp.exe
+tests/bcl/system/delegate/co1162invoke.exe
+tests/bcl/system/delegate/co1900begininvoke.exe
+tests/bcl/system/delegate/co1901clone.exe
+tests/bcl/system/delegate/co1902createdelegate.exe
+tests/bcl/system/delegate/co3150equals.exe
+tests/bcl/system/delegate/co3152getmethod.exe
+tests/bcl/system/delegate/co3154gettarget.exe
+tests/bcl/system/delegate/co3156getinvocationlist.exe
+tests/bcl/system/delegate/co3158combine.exe
+tests/bcl/system/delegate/co3160combine.exe
+tests/bcl/system/delegate/co3162remove.exe
+tests/bcl/system/delegate/co3164dynamicinvoke.exe
+tests/bcl/system/delegate/co3871op_comparisonoperators.exe
+tests/bcl/system/double/co1645parse.exe
+tests/bcl/system/double/co3448isinfinity.exe
+tests/bcl/system/double/co3449isnegativeinfinity.exe
+tests/bcl/system/double/co3452ispositiveinfinity.exe
+tests/bcl/system/double/co3453isnan.exe
+tests/bcl/system/double/co4262ctor.exe
+# tests/bcl/system/double/co4264gethashcode.exe
+tests/bcl/system/double/co4265equals.exe
+tests/bcl/system/double/co4267tostring.exe
+tests/bcl/system/double/co5003compareto.exe
+tests/bcl/system/double/co5004tostring.exe
+tests/bcl/system/double/co5012tostring_str.exe
+tests/bcl/system/double/co5014tostring_str_ifp.exe
+tests/bcl/system/double/co5019parse_int.exe
+tests/bcl/system/double/co5024parse_int_nfi.exe
+tests/bcl/system/double/co5105ctor.exe
+tests/bcl/system/double/co5119format_str_ifp.exe
+tests/bcl/system/double/co5717iconvertible_double.exe
+tests/bcl/system/double/co6002parse_str_ifp.exe
+tests/bcl/system/double/co7051gettypecode.exe
+tests/bcl/system/double/co8824tryparse_str_ns_if_dbl.exe
+tests/bcl/system/enum/co3876getunderlyingtype_tp.exe
+tests/bcl/system/enum/co3877isdefined_tp_o.exe
+tests/bcl/system/enum/co3878getvalues_tp.exe
+tests/bcl/system/enum/co3879parse_tp_str.exe
+tests/bcl/system/enum/co3880format.exe
+tests/bcl/system/enum/co3881compareto_o.exe
+tests/bcl/system/enum/co3898iconvertible_all.exe
+tests/bcl/system/enum/co3899toobject_all.exe
+tests/bcl/system/enum/co3900format_tpobjstr.exe
+tests/bcl/system/enum/co3901tostring_strifp.exe
+tests/bcl/system/enum/co3962parse_tpstrbln.exe
+tests/bcl/system/enum/co8504equals_obj.exe
+tests/bcl/system/enum/co8505gethashcode.exe
+tests/bcl/system/enum/co8506getname_typeobj.exe
+tests/bcl/system/enum/co8509tostring.exe
+tests/bcl/system/enum/co8507getnames_type.exe
+tests/bcl/system/enum/co8508tostring_ifp.exe
+tests/bcl/system/enum/co8510tostring_str.exe
+tests/bcl/system/enum/co8511gettypecode.exe
+tests/bcl/system/enum/co8825iconvertible.exe
+tests/bcl/system/environment/co1051getenvironmentvariable.exe
+tests/bcl/system/environment/co1480get_tickcount.exe
+tests/bcl/system/environment/co5324set_exitcode.exe
+tests/bcl/system/environment/co5325get_exitcode.exe
+tests/bcl/system/environment/co5483getenvironmentvariables.exe
+tests/bcl/system/environment/co5521set_currentdirectory_dir.exe
+tests/bcl/system/environment/co5522get_currentdirectory.exe
+tests/bcl/system/environment/co7010get_newline.exe
+tests/bcl/system/environment/co7012get_version.exe
+tests/bcl/system/environment/co7013get_workingset.exe
+tests/bcl/system/environment/co7014get_systemdirectory.exe
+tests/bcl/system/environment/co7015get_stacktrace.exe
+tests/bcl/system/environment/co7016getlogicaldrives.exe
+tests/bcl/system/environment/co8518getcommandlineargs.exe
+tests/bcl/system/eventargs/co5429ctor.exe
+tests/bcl/system/exception/co1367catch_block.exe
+tests/bcl/system/exception/co1369finally_block.exe
+tests/bcl/system/exception/co2206get_message.exe
+tests/bcl/system/exception/co2208get_stacktrace.exe
+tests/bcl/system/exception/co2212tostring.exe
+tests/bcl/system/exception/co3265ctor.exe
+tests/bcl/system/exception/co3266ctor_str.exe
+tests/bcl/system/exception/co5220get_source.exe
+tests/bcl/system/exception/co5221get_targetsite.exe
+tests/bcl/system/exception/co7085set_source.exe
+# tests/bcl/system/guid/co1183equals_dupl2.exe
+# tests/bcl/system/guid/co1184ctor_default_dupl2.exe
+# tests/bcl/system/guid/co1186ctor_string.exe
+# tests/bcl/system/guid/co1187tostring_dupl2.exe
+# tests/bcl/system/guid/co1188gethashcode_dupl2.exe
+tests/bcl/system/guid/co1189ctor_4221arr.exe
+tests/bcl/system/guid/co3870op_comparisonoperators.exe
+tests/bcl/system/guid/co5321ctor_bytarr.exe
+tests/bcl/system/guid/co5322tobytearray.exe
+tests/bcl/system/guid/co5323ctor_issuuuuuuuu.exe
+tests/bcl/system/guid/co7074ctor_uint32_uint16_uint16_uint16_bbbbbbbb.exe
+tests/bcl/system/guid/co8521compareto_obj.exe
+tests/bcl/system/guid/co8575newguid.exe
+tests/bcl/system/guid/co8576tostring_str.exe
+tests/bcl/system/guid/co8577tostring_str_ifp.exe
+tests/bcl/system/int16/co1622cons_eq_gv_ghc.exe
+tests/bcl/system/int16/co5000compareto.exe
+tests/bcl/system/int16/co5001parse.exe
+tests/bcl/system/int16/co5006tostring_str.exe
+tests/bcl/system/int16/co5007tostring_str_ifp.exe
+tests/bcl/system/int16/co5016parse_int.exe
+tests/bcl/system/int16/co5021parse_int_nfi.exe
+tests/bcl/system/int16/co5106ctor.exe
+tests/bcl/system/int16/co5120format_str_ifp.exe
+tests/bcl/system/int16/co5718iconvertible_int16.exe
+tests/bcl/system/int16/co6003fromstring.exe
+tests/bcl/system/int16/co7050gettypecode.exe
+tests/bcl/system/int16/co8578tostring_ifp.exe
+tests/bcl/system/int16/co8579parse_str_ifp.exe
+tests/bcl/system/int32/co1115parse.exe
+tests/bcl/system/int32/co1117compareto.exe
+tests/bcl/system/int32/co1612cons_eq_gv_ghc.exe
+tests/bcl/system/int32/co1613tostring_int_static_dupl2.exe
+tests/bcl/system/int32/co5008tostring_str.exe
+tests/bcl/system/int32/co5009tostring_str_ifp.exe
+tests/bcl/system/int32/co5017parse_int.exe
+tests/bcl/system/int32/co5022parse_int_nfi.exe
+tests/bcl/system/int32/co5107ctor.exe
+tests/bcl/system/int32/co5121format_str_ifp.exe
+tests/bcl/system/int32/co5719iconvertible_int32.exe
+tests/bcl/system/int32/co6004fromstring.exe
+tests/bcl/system/int32/co7049gettypecode.exe
+tests/bcl/system/int32/co8580tostring_ifp.exe
+tests/bcl/system/int32/co8581parse_str_ifp.exe
+tests/bcl/system/int64/co1118compareto.exe
+tests/bcl/system/int64/co1632cons_eq_gv_ghc.exe
+tests/bcl/system/int64/co5002parse.exe
+tests/bcl/system/int64/co5010tostring_str.exe
+tests/bcl/system/int64/co5011tostring_str_ifp.exe
+tests/bcl/system/int64/co5018parse_int.exe
+tests/bcl/system/int64/co5023parse_int_nfi.exe
+tests/bcl/system/int64/co5108ctor.exe
+tests/bcl/system/int64/co5122format_str_ifp.exe
+tests/bcl/system/int64/co5720iconvertible_int64.exe
+tests/bcl/system/int64/co6005fromstring.exe
+tests/bcl/system/int64/co7048gettypecode.exe
+tests/bcl/system/int64/co8582tostring_ifp.exe
+tests/bcl/system/int64/co8583parse_str_ifp.exe
+tests/bcl/system/intptr/co8522ctor_int.exe
+tests/bcl/system/intptr/co8523ctor_long.exe
+tests/bcl/system/intptr/co8524ctor_void.exe
+tests/bcl/system/intptr/co8525equals_obj.exe
+tests/bcl/system/intptr/co8526get_size.exe
+tests/bcl/system/intptr/co8527gethashcode.exe
+tests/bcl/system/intptr/co8528operator_multi.exe
+tests/bcl/system/intptr/co8529toint32.exe
+tests/bcl/system/intptr/co8530toint64.exe
+tests/bcl/system/intptr/co8531topointer.exe
+tests/bcl/system/intptr/co8532tostring.exe
+tests/bcl/system/io/binaryreader/co5631ctor_stream.exe
+tests/bcl/system/io/binaryreader/co5632ctor_stream_enc.exe
+tests/bcl/system/io/binaryreader/co5633close.exe
+tests/bcl/system/io/binaryreader/co5634get_basestream.exe
+tests/bcl/system/io/binaryreader/co5635peekchar.exe
+tests/bcl/system/io/binaryreader/co5636read.exe
+tests/bcl/system/io/binaryreader/co5637read_charr_ii.exe
+tests/bcl/system/io/binaryreader/co5638readchar.exe
+tests/bcl/system/io/binaryreader/co5639readchars.exe
+tests/bcl/system/io/binaryreader/co5640readbytes.exe
+tests/bcl/system/io/binaryreader/co5641readboolean.exe
+tests/bcl/system/io/binaryreader/co5642readdouble.exe
+tests/bcl/system/io/binaryreader/co5643readint16.exe
+tests/bcl/system/io/binaryreader/co5644readint32.exe
+tests/bcl/system/io/binaryreader/co5645readint64.exe
+tests/bcl/system/io/binaryreader/co5646readsingle.exe
+tests/bcl/system/io/binaryreader/co5647readuint16.exe
+tests/bcl/system/io/binaryreader/co5648readuint32.exe
+tests/bcl/system/io/binaryreader/co5649readuint64.exe
+tests/bcl/system/io/binaryreader/co5650readsbyte.exe
+tests/bcl/system/io/binaryreader/co5651readstring.exe
+tests/bcl/system/io/binaryreader/co5653readbyte.exe
+tests/bcl/system/io/binaryreader/co5654read_barr_ii.exe
+tests/bcl/system/io/binaryreader/co9300readdecimal.exe
+tests/bcl/system/io/binarywriter/co5536ctor_str.exe
+tests/bcl/system/io/binarywriter/co5537write_bool.exe
+tests/bcl/system/io/binarywriter/co5538write_char.exe
+tests/bcl/system/io/binarywriter/co5539write_dbl.exe
+tests/bcl/system/io/binarywriter/co5540write_i16.exe
+tests/bcl/system/io/binarywriter/co5541write_i32.exe
+tests/bcl/system/io/binarywriter/co5542write_i64.exe
+tests/bcl/system/io/binarywriter/co5543write_sgl.exe
+tests/bcl/system/io/binarywriter/co5544write_ui16.exe
+tests/bcl/system/io/binarywriter/co5545write_ui32.exe
+tests/bcl/system/io/binarywriter/co5546write_ui64.exe
+tests/bcl/system/io/binarywriter/co5547write_sbyt.exe
+tests/bcl/system/io/binarywriter/co5548write_byt.exe
+tests/bcl/system/io/binarywriter/co5549write_str.exe
+tests/bcl/system/io/binarywriter/co5550writestring_str.exe
+tests/bcl/system/io/binarywriter/co5552write_barr.exe
+tests/bcl/system/io/binarywriter/co5553write_carr.exe
+tests/bcl/system/io/binarywriter/co5554write_carr_ii.exe
+tests/bcl/system/io/binarywriter/co5561seek_i_so.exe
+tests/bcl/system/io/binarywriter/co5738get_basestream.exe
+tests/bcl/system/io/binarywriter/co5739flush.exe
+tests/bcl/system/io/binarywriter/co5740ctor_stream_enc.exe
+tests/bcl/system/io/binarywriter/co5741close.exe
+tests/bcl/system/io/binarywriter/co5742write_barr_ii.exe
+tests/bcl/system/io/binarywriter/co9301write_dcml.exe
+tests/bcl/system/io/bufferedstream/co5602ctor_stream.exe
+tests/bcl/system/io/bufferedstream/co5603ctor_stream_i.exe
+tests/bcl/system/io/bufferedstream/co5604close.exe
+tests/bcl/system/io/bufferedstream/co5605flush.exe
+tests/bcl/system/io/bufferedstream/co5606get_canread.exe
+tests/bcl/system/io/bufferedstream/co5607get_canwrite.exe
+tests/bcl/system/io/bufferedstream/co5608get_canseek.exe
+tests/bcl/system/io/bufferedstream/co5609setlength.exe
+tests/bcl/system/io/bufferedstream/co5610get_length.exe
+tests/bcl/system/io/bufferedstream/co5611set_position.exe
+tests/bcl/system/io/bufferedstream/co5612get_position.exe
+tests/bcl/system/io/bufferedstream/co5614seek_i64_so.exe
+tests/bcl/system/io/bufferedstream/co5615write_barr_i_i.exe
+tests/bcl/system/io/bufferedstream/co5616read_barr_i_i.exe
+tests/bcl/system/io/bufferedstream/co5743writebyte.exe
+tests/bcl/system/io/bufferedstream/co5744readbyte.exe
+tests/bcl/system/io/directory/co5512getlogicaldrives.exe
+tests/bcl/system/io/directory/co5513createdirectory_str.exe
+tests/bcl/system/io/directory/co5656get_isdirectory.exe
+tests/bcl/system/io/directory/co5657get_isfile.exe
+tests/bcl/system/io/directory/co5658exists_str.exe
+tests/bcl/system/io/directory/co5663delete_str_bool.exe
+tests/bcl/system/io/directory/co5664delete_str.exe
+tests/bcl/system/io/directory/co5669getdirectoryroot_str.exe
+tests/bcl/system/io/directory/co5670getdirectories_str.exe
+tests/bcl/system/io/directory/co5671getfiles_str.exe
+tests/bcl/system/io/directory/co5672getfiles_str_str.exe
+tests/bcl/system/io/directory/co5674getdirectories_str_str.exe
+tests/bcl/system/io/directory/co5736setcurrentdirectory_dir.exe
+tests/bcl/system/io/directory/co5737getcurrentdirectory.exe
+tests/bcl/system/io/directory/co5751getparent_str.exe
+tests/bcl/system/io/directory/co5759move_str_str.exe
+# tests/bcl/system/io/directory/co9025getcreationtime_str.exe
+# tests/bcl/system/io/directory/co9026setcreationtime_str_dt.exe
+tests/bcl/system/io/directory/co9027getlastaccesstime_str.exe
+tests/bcl/system/io/directory/co9028setlastaccesstime_str_dt.exe
+tests/bcl/system/io/directory/co9029getlastwritetime_str.exe
+tests/bcl/system/io/directory/co9030setlastwritetime_str_dt.exe
+tests/bcl/system/io/directory/co9034getfilesystementries_str_str.exe
+tests/bcl/system/io/directory/co9035getfilesystementries_str.exe
+tests/bcl/system/io/directoryinfo/co5510ctor_str.exe
+tests/bcl/system/io/directoryinfo/co5511get_fullname.exe
+tests/bcl/system/io/directoryinfo/co5516createsubdirectory_str.exe
+tests/bcl/system/io/directoryinfo/co5517delete.exe
+# tests/bcl/system/io/directoryinfo/co5518get_creationtime.exe
+tests/bcl/system/io/directoryinfo/co5519set_attributes.exe
+tests/bcl/system/io/directoryinfo/co5520get_attributes.exe
+tests/bcl/system/io/directoryinfo/co5523tostring.exe
+tests/bcl/system/io/directoryinfo/co5525moveto_str.exe
+tests/bcl/system/io/directoryinfo/co5659exists.exe
+tests/bcl/system/io/directoryinfo/co5660get_name.exe
+tests/bcl/system/io/directoryinfo/co5662delete_bool.exe
+tests/bcl/system/io/directoryinfo/co5665get_parent.exe
+tests/bcl/system/io/directoryinfo/co5666get_root.exe
+tests/bcl/system/io/directoryinfo/co5667getdirectories.exe
+tests/bcl/system/io/directoryinfo/co5668getfiles.exe
+# tests/bcl/system/io/directoryinfo/co5673getfiles_str.exe
+# tests/bcl/system/io/directoryinfo/co5675getdirectories_str.exe
+tests/bcl/system/io/directoryinfo/co5676getfilesysteminfos.exe
+tests/bcl/system/io/directoryinfo/co5677getfilesysteminfos_str.exe
+tests/bcl/system/io/directoryinfo/co5748get_lastaccesstime.exe
+tests/bcl/system/io/directoryinfo/co5749get_lastwritetime.exe
+tests/bcl/system/io/directoryinfo/co5767refresh.exe
+tests/bcl/system/io/directoryinfo/co9031setlastaccesstime_dt.exe
+# tests/bcl/system/io/directoryinfo/co9032setcreationtime_dt.exe
+tests/bcl/system/io/directoryinfo/co9033setlastwritetime_dt.exe
+tests/bcl/system/io/directoryinfo/co9040create.exe
+tests/bcl/system/io/directoryinfo/co9041extension.exe
+# tests/bcl/system/io/file/co5586copy_str_str_b.exe
+tests/bcl/system/io/file/co5587copy_str_str.exe
+tests/bcl/system/io/file/co5589create_str_i.exe
+tests/bcl/system/io/file/co5683exists_str.exe
+tests/bcl/system/io/file/co5686appendtext_str.exe
+tests/bcl/system/io/file/co5687changeextension_str_str.exe
+tests/bcl/system/io/file/co5688createtext_str.exe
+tests/bcl/system/io/file/co5690delete_str.exe
+# tests/bcl/system/io/file/co5692opentext_str.exe
+tests/bcl/system/io/file/co5710move_str_str.exe
+tests/bcl/system/io/file/co5754openread_str.exe
+tests/bcl/system/io/file/co5755openwrite_str.exe
+tests/bcl/system/io/file/co9001getattributes_str.exe
+tests/bcl/system/io/file/co9002setattributes_str_attrs.exe
+# tests/bcl/system/io/file/co9003getcreationtime_str.exe
+# tests/bcl/system/io/file/co9004setcreationtime_str_dt.exe
+tests/bcl/system/io/file/co9005getlastaccesstime_str.exe
+tests/bcl/system/io/file/co9006setlastaccesstime_str_dt.exe
+tests/bcl/system/io/file/co9007getlastwritetime_str.exe
+tests/bcl/system/io/file/co9008setlastwritetime_str_dt.exe
+tests/bcl/system/io/file/co9009open_str_fm.exe
+tests/bcl/system/io/file/co9010open_str_fm_fa.exe
+tests/bcl/system/io/file/co9011open_str_fm_fa_fs.exe
+tests/bcl/system/io/fileinfo/co5530ctor_str.exe
+tests/bcl/system/io/fileinfo/co5531copyto_str.exe
+tests/bcl/system/io/fileinfo/co5585copyto_str_b.exe
+tests/bcl/system/io/fileinfo/co5588create_str.exe
+tests/bcl/system/io/fileinfo/co5682delete.exe
+tests/bcl/system/io/fileinfo/co5685appendtext.exe
+tests/bcl/system/io/fileinfo/co5689createtext.exe
+tests/bcl/system/io/fileinfo/co5691opentext.exe
+tests/bcl/system/io/fileinfo/co5693open_fm.exe
+tests/bcl/system/io/fileinfo/co5694get_name.exe
+tests/bcl/system/io/fileinfo/co5697get_directoryname.exe
+tests/bcl/system/io/fileinfo/co5698get_directory.exe
+tests/bcl/system/io/fileinfo/co5699get_length.exe
+tests/bcl/system/io/fileinfo/co5700set_attributes.exe
+tests/bcl/system/io/fileinfo/co5701get_attributes.exe
+# tests/bcl/system/io/fileinfo/co5703get_creationtime.exe
+tests/bcl/system/io/fileinfo/co5704get_lastaccesstime.exe
+tests/bcl/system/io/fileinfo/co5705get_lastwritetime.exe
+tests/bcl/system/io/fileinfo/co5706tostring.exe
+tests/bcl/system/io/fileinfo/co5708open_fm_fa.exe
+tests/bcl/system/io/fileinfo/co5709open_fm_fa_fs.exe
+tests/bcl/system/io/fileinfo/co5711moveto_str.exe
+tests/bcl/system/io/fileinfo/co5752openread.exe
+tests/bcl/system/io/fileinfo/co5753openwrite.exe
+tests/bcl/system/io/fileinfo/co5768refresh.exe
+tests/bcl/system/io/fileinfo/co9012create.exe
+# tests/bcl/system/io/fileinfo/co9013set_creationtime_dt.exe
+tests/bcl/system/io/fileinfo/co9014exists.exe
+tests/bcl/system/io/fileinfo/co9015extension.exe
+tests/bcl/system/io/fileinfo/co9016fullname.exe
+tests/bcl/system/io/filestream/co5535ctor_i_fa.exe
+tests/bcl/system/io/filestream/co5575ctor_str_fm.exe
+tests/bcl/system/io/filestream/co5576set_position.exe
+tests/bcl/system/io/filestream/co5577get_position.exe
+tests/bcl/system/io/filestream/co5578setlength_i64.exe
+tests/bcl/system/io/filestream/co5579get_canread.exe
+tests/bcl/system/io/filestream/co5580get_canwrite.exe
+tests/bcl/system/io/filestream/co5581get_length.exe
+tests/bcl/system/io/filestream/co5584beginread.exe
+tests/bcl/system/io/filestream/co5715write_barr_i_i.exe
+tests/bcl/system/io/filestream/co5716read_barr_i_i.exe
+tests/bcl/system/io/filestream/co5718close.exe
+tests/bcl/system/io/filestream/co5719get_canseek.exe
+tests/bcl/system/io/filestream/co5721readbyte.exe
+tests/bcl/system/io/filestream/co5722seek_i64_so.exe
+tests/bcl/system/io/filestream/co5723flush.exe
+tests/bcl/system/io/filestream/co5724ctor_str_fm_fa.exe
+tests/bcl/system/io/filestream/co5725ctor_str_fm_fa_fs.exe
+tests/bcl/system/io/filestream/co5726ctor_str_fm_fa_fs_i.exe
+tests/bcl/system/io/filestream/co5728endwrite.exe
+tests/bcl/system/io/filestream/co5729endread.exe
+tests/bcl/system/io/filestream/co5730ctor_str_fm_fa_fs_i_b.exe
+tests/bcl/system/io/filestream/co5745writebyte.exe
+tests/bcl/system/io/filestream/co5760ctor_i_fa_b.exe
+tests/bcl/system/io/filestream/co5761ctor_i_fa_b_i.exe
+tests/bcl/system/io/filestream/co5762ctor_i_fa_b_i_b.exe
+tests/bcl/system/io/filestream/co9307ctor_str_fm_fa_fs_i_b_str.exe
+tests/bcl/system/io/filestream/filestream01.exe
+tests/bcl/system/io/filestream/filestream_lock.exe
+tests/bcl/system/io/filestream/filestream_unlock.exe
+tests/bcl/system/io/memorystream/co1801ctor.exe
+tests/bcl/system/io/memorystream/co1802ctor_b.exe
+tests/bcl/system/io/memorystream/co1803ctor_bb.exe
+tests/bcl/system/io/memorystream/co1804ctor_bii.exe
+tests/bcl/system/io/memorystream/co1805ctor_biib.exe
+tests/bcl/system/io/memorystream/co1806ctor_biibb.exe
+tests/bcl/system/io/memorystream/co1807ctor_i.exe
+tests/bcl/system/io/memorystream/co1808flush.exe
+tests/bcl/system/io/memorystream/co1809get_canread.exe
+tests/bcl/system/io/memorystream/co1810get_canseek.exe
+tests/bcl/system/io/memorystream/co1811get_canwrite.exe
+tests/bcl/system/io/memorystream/co1812close.exe
+tests/bcl/system/io/memorystream/co1814get_position.exe
+tests/bcl/system/io/memorystream/co1815set_position.exe
+tests/bcl/system/io/memorystream/co1816getbuffer.exe
+tests/bcl/system/io/memorystream/co1821write_bii.exe
+tests/bcl/system/io/memorystream/co5731get_length.exe
+tests/bcl/system/io/memorystream/co5732read_barr_i_i.exe
+tests/bcl/system/io/memorystream/co5734seek_i64_so.exe
+tests/bcl/system/io/memorystream/co5735setlength_i64.exe
+tests/bcl/system/io/memorystream/co5746writebyte.exe
+tests/bcl/system/io/memorystream/co5757set_capacity.exe
+tests/bcl/system/io/memorystream/co5758get_capacity.exe
+tests/bcl/system/io/memorystream/co5765toarray.exe
+tests/bcl/system/io/memorystream/co5766writeto_strm.exe
+tests/bcl/system/io/memorystream/memorystream01.exe
+tests/bcl/system/io/memorystream/memorystream02.exe
+tests/bcl/system/io/path/co5702hasextension_str.exe
+# tests/bcl/system/io/path/co9050changeextension_str_str.exe
+tests/bcl/system/io/path/co9051combine_str_str.exe
+tests/bcl/system/io/path/co9052getdirectoryname_str.exe
+tests/bcl/system/io/path/co9053getextension_str.exe
+tests/bcl/system/io/path/co9054getfilename_str.exe
+tests/bcl/system/io/path/co9055getfilenwextension_str.exe
+tests/bcl/system/io/path/co9056getfullpath_str.exe
+tests/bcl/system/io/path/co9057getpathroot_str.exe
+tests/bcl/system/io/path/co9058gettempfilename.exe
+tests/bcl/system/io/path/co9059gettemppath.exe
+tests/bcl/system/io/path/co9061ispathrooted_str.exe
+tests/bcl/system/io/path/co9062altdirectoryseparatorchar.exe
+tests/bcl/system/io/path/co9063directoryseparatorchar.exe
+# tests/bcl/system/io/path/co9064invalidpathchars.exe
+# tests/bcl/system/io/path/co9065pathseparator.exe
+tests/bcl/system/io/path/co9066volumeseparatorchar.exe
+tests/bcl/system/io/stream/co3965streammethods.exe
+tests/bcl/system/io/streamreader/co5617ctor_stream.exe
+tests/bcl/system/io/streamreader/co5618ctor_stream_enc.exe
+tests/bcl/system/io/streamreader/co5619ctor_stream_enc_b_i.exe
+tests/bcl/system/io/streamreader/co5620ctor_str.exe
+tests/bcl/system/io/streamreader/co5621ctor_str_enc.exe
+tests/bcl/system/io/streamreader/co5622ctor_str_enc_b_i.exe
+tests/bcl/system/io/streamreader/co5623close.exe
+tests/bcl/system/io/streamreader/co5624get_basestream.exe
+tests/bcl/system/io/streamreader/co5625getencoding.exe
+tests/bcl/system/io/streamreader/co5626read.exe
+tests/bcl/system/io/streamreader/co5627peek.exe
+tests/bcl/system/io/streamreader/co5628read_charr_ii.exe
+tests/bcl/system/io/streamreader/co5629readtoend.exe
+tests/bcl/system/io/streamreader/co5630readline.exe
+tests/bcl/system/io/streamreader/co9302ctor_stream_b.exe
+tests/bcl/system/io/streamreader/co9304ctor_str_b.exe
+tests/bcl/system/io/streamreader/co9303ctor_stream_enc_b.exe
+tests/bcl/system/io/streamreader/co9305ctor_str_enc_b.exe
+tests/bcl/system/io/streamreader/streamread.exe
+tests/bcl/system/io/streamwriter/co5560ctor_str.exe
+tests/bcl/system/io/streamwriter/co5563write_ch.exe
+tests/bcl/system/io/streamwriter/co5564write_charr_ii.exe
+tests/bcl/system/io/streamwriter/co5565write_str.exe
+tests/bcl/system/io/streamwriter/co5591set_autoflush.exe
+tests/bcl/system/io/streamwriter/co5592get_autoflush.exe
+tests/bcl/system/io/streamwriter/co5593get_basestream.exe
+tests/bcl/system/io/streamwriter/co5594ctor_str_b.exe
+tests/bcl/system/io/streamwriter/co5595close.exe
+tests/bcl/system/io/streamwriter/co5596flush.exe
+tests/bcl/system/io/streamwriter/co5597ctor_str_b_enc.exe
+tests/bcl/system/io/streamwriter/co5598ctor_str_b_enc_i.exe
+tests/bcl/system/io/streamwriter/co5599ctor_stream.exe
+tests/bcl/system/io/streamwriter/co5600ctor_stream_enc.exe
+tests/bcl/system/io/streamwriter/co5601ctor_enc_i.exe
+tests/bcl/system/io/stringreader/co5566ctor_str.exe
+tests/bcl/system/io/stringreader/co5567read.exe
+tests/bcl/system/io/stringreader/co5568peek.exe
+tests/bcl/system/io/stringreader/co5569readtoend.exe
+tests/bcl/system/io/stringreader/co5570readline.exe
+tests/bcl/system/io/stringreader/co5571read_charr_ii.exe
+tests/bcl/system/io/stringreader/co5572close.exe
+tests/bcl/system/io/stringwriter/co5555ctor.exe
+tests/bcl/system/io/stringwriter/co5556ctor_sb.exe
+tests/bcl/system/io/stringwriter/co5557write_ch.exe
+tests/bcl/system/io/stringwriter/co5558write_charr_ii.exe
+tests/bcl/system/io/stringwriter/co5559write_str.exe
+tests/bcl/system/io/stringwriter/co5561tostring.exe
+tests/bcl/system/io/stringwriter/co5562getstringbuilder.exe
+tests/bcl/system/io/stringwriter/co9400writeline_charr_ii.exe
+tests/bcl/system/io/stringwriter/co9401write_bool.exe
+tests/bcl/system/io/stringwriter/co9402writeline_bool.exe
+tests/bcl/system/math/co4046abs_short.exe
+tests/bcl/system/math/co4047abs_int.exe
+tests/bcl/system/math/co4048abs_long.exe
+tests/bcl/system/math/co4049abs_float.exe
+tests/bcl/system/math/co4050abs_double.exe
+tests/bcl/system/math/co4051max_sbyte.exe
+tests/bcl/system/math/co4052max_short.exe
+tests/bcl/system/math/co4053max_int.exe
+tests/bcl/system/math/co4054max_single.exe
+tests/bcl/system/math/co4055max_double.exe
+tests/bcl/system/math/co4057min_sbyte.exe
+tests/bcl/system/math/co4058min_short.exe
+tests/bcl/system/math/co4059min_int.exe
+tests/bcl/system/math/co4060min_long.exe
+tests/bcl/system/math/co4061min_single.exe
+tests/bcl/system/math/co4062min_double.exe
+tests/bcl/system/math/co4063ieeeremainder.exe
+tests/bcl/system/math/co4064log.exe
+tests/bcl/system/math/co4065acos.exe
+tests/bcl/system/math/co4066asin.exe
+tests/bcl/system/math/co4067atan.exe
+tests/bcl/system/math/co4068atan2.exe
+tests/bcl/system/math/co4069ceiling_dbl.exe
+tests/bcl/system/math/co4070cos.exe
+tests/bcl/system/math/co4071exp.exe
+tests/bcl/system/math/co4072floor.exe
+tests/bcl/system/math/co4073log10.exe
+tests/bcl/system/math/co4074pow.exe
+tests/bcl/system/math/co4075round.exe
+tests/bcl/system/math/co4077sin.exe
+tests/bcl/system/math/co4078sqrt.exe
+tests/bcl/system/math/co4079tan.exe
+tests/bcl/system/math/co4082log_double.exe
+tests/bcl/system/math/co4647max_ubyte.exe
+tests/bcl/system/math/co4648min_ubyte.exe
+tests/bcl/system/math/co5396max_long.exe
+tests/bcl/system/math/co5397max_uint64.exe
+tests/bcl/system/math/co5398max_uint32.exe
+tests/bcl/system/math/co5399max_uint16.exe
+tests/bcl/system/math/co5400min_uint16.exe
+tests/bcl/system/math/co5401min_uint32.exe
+tests/bcl/system/math/co5402min_uint64.exe
+tests/bcl/system/math/co7000sign_int32.exe
+tests/bcl/system/math/co7001sign_int64.exe
+tests/bcl/system/math/co7002sign_double.exe
+tests/bcl/system/math/co7003sign_decimal.exe
+tests/bcl/system/math/co7005cosh_double.exe
+tests/bcl/system/math/co7006sinh_double.exe
+tests/bcl/system/math/co7007tanh_double.exe
+tests/bcl/system/math/co7008log_double.exe
+tests/bcl/system/math/co7066sign_int16.exe
+tests/bcl/system/math/co7067sign_sbyte.exe
+tests/bcl/system/math/co8533round_dbl_int.exe
+tests/bcl/system/random/co4238ctor.exe
+tests/bcl/system/random/co4239ctor_i.exe
+tests/bcl/system/random/co4240next.exe
+tests/bcl/system/random/co4241next_i_i.exe
+tests/bcl/system/random/co4242next_i.exe
+tests/bcl/system/random/co4243nextdouble.exe
+tests/bcl/system/random/co4244nextbytes.exe
+tests/bcl/system/random/co5380sample.exe
+tests/bcl/system/runtime/serialization/formatterconverter/co3889to_most.exe
+tests/bcl/system/runtime/serialization/formatterservices/co3856getserializablemembers_type.exe
+tests/bcl/system/runtime/serialization/formatterservices/co3857getserializablemembers_type_sc.exe
+tests/bcl/system/runtime/serialization/formatterservices/co3858getobjectdata.exe
+tests/bcl/system/runtime/serialization/formatterservices/co3859getuninitializedobject.exe
+tests/bcl/system/runtime/serialization/formatterservices/co3860populateobjectmembers.exe
+tests/bcl/system/runtime/serialization/formatterservices/co3956gettypefromassembly_asmstr.exe
+tests/bcl/system/runtime/serialization/objectidgenerator/co5240ctor.exe
+tests/bcl/system/runtime/serialization/objectidgenerator/co5265hasid_obj.exe
+tests/bcl/system/runtime/serialization/objectmanager/co3861recordfixup.exe
+tests/bcl/system/runtime/serialization/objectmanager/co3862recorddelayedfixup.exe
+tests/bcl/system/runtime/serialization/objectmanager/co3890recordarrayelementfixup_lil.exe
+tests/bcl/system/runtime/serialization/objectmanager/co3891recordarrayelementfixup_lial.exe
+tests/bcl/system/runtime/serialization/objectmanager/co3892dofixups.exe
+tests/bcl/system/runtime/serialization/objectmanager/co3893getobject_lng.exe
+tests/bcl/system/runtime/serialization/objectmanager/co3894registerobject_oiser.exe
+tests/bcl/system/runtime/serialization/objectmanager/co5244registerobject_obj_lng.exe
+tests/bcl/system/runtime/serialization/objectmanager/co8626ctor_is.exe
+tests/bcl/system/runtime/serialization/objectmanager/co8627raisedeserializationevent.exe
+tests/bcl/system/runtime/serialization/objectmanager/co8628registerobject_oisim.exe
+tests/bcl/system/runtime/serialization/pseudomlformatter/co1011serialize.exe
+tests/bcl/system/runtime/serialization/serializationentry/co8630get_name.exe
+tests/bcl/system/runtime/serialization/serializationentry/co8631get_value.exe
+tests/bcl/system/runtime/serialization/serializationentry/co8632get_objecttype.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3847get_fulltypename.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3848get_membercount.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3849getvalue_str_tp.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3851getenumerator.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3884ctor_tp_if.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3885addvalue_most.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3888get_most.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3959get_assemblyname.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co3960set_assemblyname.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co8633set_fulltypename.exe
+tests/bcl/system/runtime/serialization/serializationinfo/co8634settype_type.exe
+tests/bcl/system/runtime/serialization/serializationinfoenumerator/co3852movenext.exe
+tests/bcl/system/runtime/serialization/serializationinfoenumerator/co3853get_name.exe
+tests/bcl/system/runtime/serialization/serializationinfoenumerator/co3854get_value.exe
+tests/bcl/system/runtime/serialization/serializationinfoenumerator/co3957get_current.exe
+tests/bcl/system/runtime/serialization/serializationinfoenumerator/co3958get_objecttype.exe
+tests/bcl/system/runtime/serialization/serializationinfoenumerator/co8635reset.exe
+tests/bcl/system/runtime/serialization/streamingcontext/co5247ctor_scs.exe
+tests/bcl/system/runtime/serialization/streamingcontext/co5248ctor_scs_obj.exe
+tests/bcl/system/runtime/serialization/streamingcontext/co5249get_state.exe
+tests/bcl/system/runtime/serialization/streamingcontext/co5250get_context.exe
+tests/bcl/system/runtime/serialization/streamingcontext/co5251equals.exe
+tests/bcl/system/runtime/serialization/streamingcontext/co5252gethashcode.exe
+tests/bcl/system/runtime/serialization/surrogateselector/co5246ctor.exe
+tests/bcl/system/runtime/serialization/surrogateselector/co5285addsurrogate_typ_iss.exe
+tests/bcl/system/runtime/serialization/surrogateselector/co5286getsurrogate_typ_sc.exe
+tests/bcl/system/runtime/serialization/surrogateselector/co5287chainselector.exe
+tests/bcl/system/runtime/serialization/surrogateselector/co5288removesurrogate_typ.exe
+tests/bcl/system/runtime/serialization/surrogateselector/co8636getnextselector.exe
+tests/bcl/system/sbyte/co3658compareto.exe
+tests/bcl/system/sbyte/co3661tostring_str.exe
+tests/bcl/system/sbyte/co3662tostring_str_ifp.exe
+tests/bcl/system/sbyte/co3663parse_int.exe
+tests/bcl/system/sbyte/co3664parse_int_nfi.exe
+tests/bcl/system/sbyte/co3665format_str_iformatprovider.exe
+tests/bcl/system/sbyte/co4223equals.exe
+tests/bcl/system/sbyte/co4225tostring.exe
+# tests/bcl/system/sbyte/co4226gethashcode.exe
+tests/bcl/system/sbyte/co4227tostring_byte.exe
+tests/bcl/system/sbyte/co4228parse.exe
+tests/bcl/system/sbyte/co5725iconvertible_sbyte.exe
+tests/bcl/system/sbyte/co6006fromstring.exe
+tests/bcl/system/sbyte/co7047gettypecode.exe
+tests/bcl/system/sbyte/co8584tostring_ifp.exe
+tests/bcl/system/sbyte/co8585parse_str_ifp.exe
+tests/bcl/system/single/co1120compareto.exe
+tests/bcl/system/single/co3447isinfinity.exe
+tests/bcl/system/single/co3450isnegativeinfinity.exe
+tests/bcl/system/single/co3451ispositiveinfinity.exe
+tests/bcl/system/single/co3454isnan.exe
+tests/bcl/system/single/co4250parse.exe
+tests/bcl/system/single/co4251equals.exe
+# tests/bcl/system/single/co4253gethashcode.exe
+tests/bcl/system/single/co4257tostring.exe
+tests/bcl/system/single/co4258tostring.exe
+tests/bcl/system/single/co5013tostring_str.exe
+tests/bcl/system/single/co5015tostring_str_ifp.exe
+tests/bcl/system/single/co5020parse_int.exe
+tests/bcl/system/single/co5025parse_int_nfi.exe
+tests/bcl/system/single/co5123format_str_ifp.exe
+tests/bcl/system/single/co5724iconvertible_single.exe
+tests/bcl/system/single/co6007fromstring.exe
+tests/bcl/system/single/co7046gettypecode.exe
+tests/bcl/system/single/co8586tostring_ifp.exe
+tests/bcl/system/single/co8587parse_str_ifp.exe
+tests/bcl/system/string/co1130get_chars.exe
+tests/bcl/system/string/co3442tolower_loc.exe
+tests/bcl/system/string/co3443toupper_loc.exe
+tests/bcl/system/string/co3709compare_strstrboolloc.exe
+tests/bcl/system/string/co3712format_strobjarrifp.exe
+tests/bcl/system/string/co5100format_str_obj.exe
+tests/bcl/system/string/co5101format_str_4objs.exe
+tests/bcl/system/string/co5102format_str_3objs.exe
+tests/bcl/system/string/co5103format_str_2objs.exe
+tests/bcl/system/string/co9301padleft.exe
+tests/bcl/system/string/co9302padleft_ch_i.exe
+tests/bcl/system/string/co9303padright_i.exe
+tests/bcl/system/string/co9304padright_ch_i.exe
+tests/bcl/system/string/co1000toupper.exe
+tests/bcl/system/string/co1010tolower.exe
+tests/bcl/system/string/co1022get_length.exe
+tests/bcl/system/string/co1030compare_strstrbool.exe
+tests/bcl/system/string/co1090indexof_charint.exe
+tests/bcl/system/string/co1091indexof_char.exe
+tests/bcl/system/string/co1100equals_str.exe
+tests/bcl/system/string/co1126substring_int.exe
+tests/bcl/system/string/co1150endswith_str.exe
+tests/bcl/system/string/co1160lastindexof_charint.exe
+tests/bcl/system/string/co1161lastindexof_chararrint.exe
+tests/bcl/system/string/co1454ctor_strings.exe
+tests/bcl/system/string/co1490tochararray_intint.exe
+tests/bcl/system/string/co2345replace_cc.exe
+tests/bcl/system/string/co1491get_chars_chararrii.exe
+tests/bcl/system/string/co2346replace_ss.exe
+tests/bcl/system/string/co3038trimend_charr.exe
+tests/bcl/system/string/co3039trimstart_charr.exe
+tests/bcl/system/string/co3040trim_charr.exe
+tests/bcl/system/string/co3041tostring.exe
+tests/bcl/system/string/co3042gethashcode.exe
+tests/bcl/system/string/co3043split_charr.exe
+tests/bcl/system/string/co3044join_strstrarrii.exe
+tests/bcl/system/string/co3045join_strstrarr.exe
+tests/bcl/system/string/co3130ctor_strstr.exe
+tests/bcl/system/string/co3140equals_obj.exe
+tests/bcl/system/string/co3146ctor_chararr.exe
+tests/bcl/system/string/co3148ctor_chararrintint.exe
+tests/bcl/system/string/co3408compare_strstr.exe
+tests/bcl/system/string/co3428trim.exe
+tests/bcl/system/string/co3409compare_strintstrintint.exe
+tests/bcl/system/string/co3411compareto_str.exe
+tests/bcl/system/string/co3416indexof_charintint.exe
+tests/bcl/system/string/co3417indexof_chararr.exe
+tests/bcl/system/string/co3418indexof_chararrint.exe
+tests/bcl/system/string/co3419indexof_chararrintint.exe
+tests/bcl/system/string/co3420indexof_str.exe
+tests/bcl/system/string/co3421indexof_strint.exe
+tests/bcl/system/string/co3422indexof_strintint.exe
+tests/bcl/system/string/co3423lastindexof_charintint.exe
+tests/bcl/system/string/co3424lastindexof_chararr.exe
+tests/bcl/system/string/co3425lastindexof_chararrintint.exe
+tests/bcl/system/string/co3426lastindexof_char.exe
+tests/bcl/system/string/co4825isinterned.exe
+tests/bcl/system/string/co3427startswith_str.exe
+tests/bcl/system/string/co3440replace_charchar.exe
+tests/bcl/system/string/co3441compare_strintstrintintboolloc.exe
+tests/bcl/system/string/co3445compareordinal_strstr.exe
+tests/bcl/system/string/co3446compareordinal_strintstrintint.exe
+tests/bcl/system/string/co3710substring_intint.exe
+tests/bcl/system/string/co3711lastindexof_strint.exe
+tests/bcl/system/string/co3713lastindexof_strintint.exe
+tests/bcl/system/string/co4000ctor_strarr.exe
+tests/bcl/system/string/co4827ctor_sbyte_int_int.exe
+tests/bcl/system/string/co4828ctor_sbyte.exe
+tests/bcl/system/string/co4829concat_string_string_string.exe
+tests/bcl/system/string/co4830concat_string_string.exe
+tests/bcl/system/string/co4832ctor_char_int.exe
+tests/bcl/system/string/co4833copy.exe
+tests/bcl/system/string/co4834equals_string_string.exe
+tests/bcl/system/string/co5050format_objs.exe
+tests/bcl/system/string/co5150compareto_obj.exe
+tests/bcl/system/string/co5151equals_str_str.exe
+tests/bcl/system/string/co5154remove_ii.exe
+tests/bcl/system/string/co5152tochararray.exe
+tests/bcl/system/string/co5153split_charr_int.exe
+tests/bcl/system/string/co5155insert_is.exe
+tests/bcl/system/string/co5156lastindexof_str.exe
+tests/bcl/system/string/co5463concat_obj.exe
+tests/bcl/system/string/co5464concat_oo.exe
+tests/bcl/system/string/co5465concat_ooo.exe
+tests/bcl/system/string/co5467concat_oarr.exe
+tests/bcl/system/string/co5472copyto_i_charr_ii.exe
+tests/bcl/system/string/co5504ctor_charptr.exe
+tests/bcl/system/string/co5800intern.exe
+tests/bcl/system/timespan/co1528ctor_iiii.exe
+tests/bcl/system/timespan/co2900ctor.exe
+tests/bcl/system/timespan/co2902ctor_long.exe
+tests/bcl/system/timespan/co2904ctor_iii.exe
+tests/bcl/system/timespan/co2910add.exe
+tests/bcl/system/timespan/co2912compare.exe
+tests/bcl/system/timespan/co2914compareto.exe
+tests/bcl/system/timespan/co2916get_days.exe
+tests/bcl/system/timespan/co2918duration.exe
+tests/bcl/system/timespan/co2920equals.exe
+tests/bcl/system/timespan/co2922equals.exe
+tests/bcl/system/timespan/co2924get_days.exe
+tests/bcl/system/timespan/co2926gethashcode.exe
+tests/bcl/system/timespan/co2928get_hours.exe
+tests/bcl/system/timespan/co2930frommilliseconds.exe
+tests/bcl/system/timespan/co2932get_minutes.exe
+tests/bcl/system/timespan/co2934get_seconds.exe
+tests/bcl/system/timespan/co2936get_ticks.exe
+tests/bcl/system/timespan/co2938get_totaldays.exe
+tests/bcl/system/timespan/co2940get_totalhours.exe
+tests/bcl/system/timespan/co2944get_totalminutes.exe
+tests/bcl/system/timespan/co2948fromhours.exe
+tests/bcl/system/timespan/co2952fromminutes.exe
+tests/bcl/system/timespan/co2954negate.exe
+tests/bcl/system/timespan/co2956fromseconds.exe
+tests/bcl/system/timespan/co2958subtract.exe
+tests/bcl/system/timespan/co2960fromticks.exe
+tests/bcl/system/timespan/co2962tostring.exe
+tests/bcl/system/timespan/co3868op_comparisonoperators.exe
+tests/bcl/system/timespan/co5337tostring_ts.exe
+tests/bcl/system/timespan/co5338parse_str.exe
+tests/bcl/system/timespan/co5339fromdays.exe
+tests/bcl/system/timespan/co5340get_totalminutes.exe
+tests/bcl/system/timespan/co5341get_totalseconds.exe
+tests/bcl/system/timespan/co6009fromstring.exe
+tests/bcl/system/timespan/co8588ctor_iiiii.exe
+tests/bcl/system/timezone/co5453getcurrenttimezone.exe
+tests/bcl/system/uint16/co5723iconvertible_uint16.exe
+tests/bcl/system/uint16/co6012compareto_ob.exe
+tests/bcl/system/uint16/co6013equals_object.exe
+tests/bcl/system/uint16/co6014tostring_str_ifp.exe
+tests/bcl/system/uint16/co6015format_u16_str_ifp.exe
+tests/bcl/system/uint16/co6016tostring_str.exe
+tests/bcl/system/uint16/co6017gethashcode.exe
+tests/bcl/system/uint16/co6019parse_str.exe
+tests/bcl/system/uint16/co6020parse_str_int.exe
+tests/bcl/system/uint16/co6021parse_str_int_nfi.exe
+tests/bcl/system/uint16/co6022tostring.exe
+tests/bcl/system/uint16/co6023tostring_uint.exe
+tests/bcl/system/uint16/co7045gettypecode.exe
+tests/bcl/system/uint16/co7070fromstring_str.exe
+tests/bcl/system/uint16/co8589tostring_ifp.exe
+tests/bcl/system/uint16/co8590parse_str_ifp.exe
+tests/bcl/system/uint32/co5722iconvertible_uint32.exe
+tests/bcl/system/uint32/co6026compareto_object.exe
+tests/bcl/system/uint32/co6027equals_object.exe
+tests/bcl/system/uint32/co6028tostring_str_ifp.exe
+tests/bcl/system/uint32/co6029format_u32_str_ifp.exe
+tests/bcl/system/uint32/co6030tostring_str.exe
+tests/bcl/system/uint32/co6031gethashcode.exe
+tests/bcl/system/uint32/co6033parse_str.exe
+tests/bcl/system/uint32/co6034parse_str_int.exe
+tests/bcl/system/uint32/co6035parse_str_int_nfi.exe
+tests/bcl/system/uint32/co6036tostring.exe
+tests/bcl/system/uint32/co6037tostring_uint.exe
+tests/bcl/system/uint32/co7044gettypecode.exe
+tests/bcl/system/uint32/co7069fromstring_str.exe
+tests/bcl/system/uint32/co8591tostring_ifp.exe
+tests/bcl/system/uint32/co8592parse_str_ifp.exe
+tests/bcl/system/uint64/co5721iconvertible_uint64.exe
+tests/bcl/system/uint64/co6040compareto_object.exe
+tests/bcl/system/uint64/co6041equals_object.exe
+tests/bcl/system/uint64/co6042tostring_str_ifp.exe
+tests/bcl/system/uint64/co6043format_u64_str_ifp.exe
+tests/bcl/system/uint64/co6044tostring_str.exe
+tests/bcl/system/uint64/co6045gethashcode.exe
+tests/bcl/system/uint64/co6047parse_str.exe
+tests/bcl/system/uint64/co6048parse_str_int.exe
+tests/bcl/system/uint64/co6049parse_str_int_nfi.exe
+tests/bcl/system/uint64/co6050tostring.exe
+tests/bcl/system/uint64/co6051tostring_ulong.exe
+tests/bcl/system/uint64/co7043gettypecode.exe
+tests/bcl/system/uint64/co7071fromstring_str.exe
+tests/bcl/system/uint64/co8593tostring_ifp.exe
+tests/bcl/system/uint64/co8594parse_str_ifp.exe
+tests/bcl/system/uintptr/co8534ctor_uint.exe
+tests/bcl/system/uintptr/co8535ctor_ulong.exe
+tests/bcl/system/uintptr/co8536ctor_void.exe
+tests/bcl/system/uintptr/co8537equals_obj.exe
+tests/bcl/system/uintptr/co8538get_size.exe
+# tests/bcl/system/uintptr/co8539gethashcode.exe
+tests/bcl/system/uintptr/co8540operator_multi.exe
+tests/bcl/system/uintptr/co8541topointer.exe
+tests/bcl/system/uintptr/co8542tostring.exe
+tests/bcl/system/uintptr/co8543touint32.exe
+tests/bcl/system/uintptr/co8544touint64.exe
+tests/bcl/system/valuetype/co3873tostring.exe
+tests/bcl/system/valuetype/co3874equals.exe
+# tests/bcl/system/valuetype/co3875gethashcode.exe
+tests/bcl/system/version/co5473clone.exe
+tests/bcl/system/version/co5474get_build.exe
+tests/bcl/system/version/co5475set_build.exe
+tests/bcl/system/version/co5476get_major.exe
+tests/bcl/system/version/co5477set_major.exe
+tests/bcl/system/version/co5478get_minor.exe
+tests/bcl/system/version/co5479set_minor.exe
+tests/bcl/system/version/co5480get_revision.exe
+tests/bcl/system/version/co5481set_revision.exe
+tests/bcl/system/version/co7037ctor_iii.exe
+tests/bcl/system/version/co7038ctor_ii.exe
+tests/bcl/system/version/co7039ctor_str.exe
+tests/bcl/system/version/co7040compareto_object.exe
+tests/bcl/system/version/co7041equals_object.exe
+tests/bcl/system/version/co7042tostring.exe
+tests/bcl/system/version/co8595gethashcode.exe
+tests/bcl/system/version/co8596tostring_int.exe
+tests/bcl/threadsafety/arraylist/co8502multiplereaders.exe
+tests/bcl/threadsafety/hashtable/co8503singlewritermultiplereaders.exe
+tests/bcl/threadsafety/methods/co8832nonautomatedmethods.exe
+tests/bcl/threadsafety/resourcemanager/co3878synchronized.exe
+tests/bcl/threadsafety/types/co8545int32.exe
+tests/bcl/threadsafety/types/co8546int16.exe
+tests/bcl/threadsafety/types/co8547sbyte.exe
+tests/bcl/threadsafety/types/co8548intptr.exe
+tests/bcl/threadsafety/types/co8549uint16.exe
+tests/bcl/threadsafety/types/co8550uint32.exe
+tests/bcl/threadsafety/types/co8551byte.exe
+tests/bcl/threadsafety/types/co8552uintptr.exe
+tests/bcl/threadsafety/types/co8553char.exe
+tests/bcl/threadsafety/types/co8555boolean.exe
+tests/bcl/threadsafety/types/co8559enum.exe
+tests/bcl/threadsafety/types/co8788stringbuilder.exe
+tests/bcl/threadsafety/types/co8827console.exe
+tests/bcl/threadsafety/types/co8830single.exe
+tests/bvt/short/33objref.exe
+tests/bvt/short/co1245getbytes_double.exe
+tests/bvt/short/co1252append_string.exe
+tests/bvt/short/co1256append_float.exe
+tests/bvt/short/co2350remove.exe
+tests/bvt/short/co3579tobyte.exe
+tests/bvt/short/co3894regsiterobject_oiser.exe
+tests/bvt/short/co5056compareto.exe
+tests/bvt/short/co5209addresource_str_ubarr.exe
+tests/bvt/short/co5287chainselector.exe
+tests/bvt/short/co5430ctor_obj.exe
+tests/bvt/short/co5445ctor_iostr.exe
+tests/bvt/short/cse1.exe
+tests/bvt/short/cs_abort.exe
+tests/bvt/short/cs_ctor.exe
+tests/bvt/short/cs_interlocked.exe
+tests/bvt/short/cs_interlocked2.exe
+tests/bvt/short/cs_iotest.exe
+tests/bvt/short/cs_mutex.exe
+tests/bvt/short/cs_mutex2.exe
+tests/bvt/short/cs_mutexsample.exe
+tests/bvt/short/cs_tryfinally.exe
+tests/bvt/short/decl1.exe
+tests/bvt/short/decl2.exe
+tests/bvt/short/declmscorlib1.exe
+tests/bvt/short/declmscorlib2.exe
+tests/bvt/short/hello.exe
+tests/bvt/short/helloxml.exe
+tests/bvt/short/newarr.exe
+tests/bvt/short/pow0.exe
+tests/bvt/short/readwritelock.exe
+tests/bvt/short/add_ovf.exe
+tests/bvt/short/switch.exe
+tests/bvt/short/rem.exe
+tests/bvt/short/div.exe
+tests/bvt/verifier/ai_newarr.exe
+tests/bvt/verifier/box.exe
+tests/bvt/verifier/call_ctor1.exe
+tests/bvt/verifier/conv.exe
+tests/bvt/verifier/conv1.exe
+tests/bvt/verifier/fptr.exe
+tests/bvt/verifier/i4_r8.exe
+tests/bvt/verifier/merge1.exe
+tests/bvt/verifier/merge2.exe
+tests/bvt/verifier/merge_wrong_type.exe
+tests/bvt/verifier/numneg.exe
+tests/bvt/verifier/numneg1.exe
+tests/bvt/verifier/numpos.exe
+tests/bvt/verifier/rah_newobj.exe
+tests/bvt/verifier/rah_newobj_a.exe
+tests/bvt/verifier/scope11-1.exe
+tests/bvt/verifier/stack_ovf.exe
+tests/bvt/verifier/stack_und.exe
+tests/bvt/verifier/test_13_fault.exe
+tests/bvt/verifier/test_23_catch.exe
+tests/bvt/verifier/test_3_catch.exe
+tests/bvt/verifier/test_4_try.exe
+tests/bvt/verifier/test_brtf1.exe
+tests/bvt/verifier/test_brtf2.exe
+tests/cordbg/cordbg_hello.exe
+tests/cordbg/threads.exe
+tests/cordbg/variety.exe
+tests/dev/bclvmconsistency.exe
+tests/dev/complexdelegate.exe
+tests/dev/hugestruct.exe
+tests/dev/interoptest.exe
+tests/dev/killdriver.exe
+# tests/dev/killself.exe
+tests/dev/linenumbers.exe
+tests/dev/loadwithpartialname.exe
+tests/dev/pow.exe
+tests/dev/reflectioninvoke.exe
+tests/dev/regress1.exe
+tests/dev/regress2.exe
+tests/dev/regress4.exe
+tests/dev/remotingconfig.exe
+tests/dev/smallstructs.exe
+tests/dev/staticlocks.exe
+tests/dev/unaligned.exe
+tests/dev/arrayinitialize.exe
+tests/dev/excepfilter.exe
+tests/dev/excepgc1.exe
+tests/dev/excepgc2.exe
+tests/dev/regress3dll.exe
+tests/dev/regress3exe.exe
+tests/dev/regress5.exe
+tests/dev/rvafield_dll.exe
+tests/dev/rvafield_exe.exe
+tests/dev/tail.exe
+tests/dev/test_stfld.exe
+tests/dev/throw_from_synch_method.exe
+tests/gc/methodical/finalizer/finalizeio/finalizeio.exe
+tests/gc/methodical/finalizer/finalizeother/finalizearray.exe
+tests/gc/methodical/finalizer/finalizeother/finalizearraysleep.exe
+tests/gc/methodical/finalizer/finalizeother/finalizedest.exe
+tests/gc/methodical/finalizer/finalizeother/finalizedirectedgraph.exe
+tests/gc/methodical/finalizer/finalizeother/finalizeexcep.exe
+tests/gc/methodical/finalizer/finalizeother/finalizeinherit.exe
+tests/gc/methodical/finalizer/finalizeother/finalizenested.exe
+tests/gc/methodical/finalizer/finalizeother/finalizeobjtimeout.exe
+tests/gc/methodical/finalizer/finalizeother/finalizeresurrect.exe
+tests/gc/methodical/finalizer/finalizeother/finalizestop.exe
+tests/gc/methodical/finalizer/finalizeother/finalizetotaltimeout.exe
+tests/gc/methodical/finalizer/finalizeother/finalizeunexcep.exe
+tests/gc/methodical/keepalive/keepaliveother/keepalivearray.exe
+tests/gc/methodical/keepalive/keepaliveother/keepalivedirectedgraph.exe
+tests/gc/methodical/keepalive/keepaliveother/keepalivefinalize.exe
+tests/gc/methodical/keepalive/keepaliveother/keepalivehandle.exe
+tests/gc/methodical/keepalive/keepaliveother/keepaliveoutofmemory.exe
+tests/gc/methodical/keepalive/keepaliveother/keepalivescope.exe
+tests/gc/methodical/keepalive/keepaliveother/keepalivetry.exe
+tests/gc/methodical/keepalive/keepaliveother/keepalivetypes.exe
+tests/gc/methodical/keepalive/keepaliveother/keepaliveweak.exe
+tests/gc/methodical/pinning/pinningother/pinnedcollect.exe
+tests/gc/methodical/pinning/pinningother/pinnedgen.exe
+tests/gc/methodical/pinning/pinningother/pinnedgen_neg.exe
+tests/gc/methodical/pinning/pinningother/pinnedhandle.exe
+tests/gc/methodical/pinning/pinningother/pinnedint.exe
+tests/gc/methodical/pinning/pinningother/pinnedmany.exe
+tests/gc/methodical/pinning/pinningother/pinnedmultiple.exe
+tests/gc/methodical/pinning/pinningother/pinnedobject.exe
+tests/gc/methodical/pinning/pinningother/pinnedunsafeaddr.exe
+tests/gc/stress/directedgraph/directedgraph.exe
+tests/gc/stress/largeobjectalloc/largeobjectalloc4.exe
+tests/gc/stress/largeobjectalloc/largeobjectalloc.exe
+tests/gc/stress/largeobjectalloc/largeobjectalloc1.exe
+tests/gc/stress/largeobjectalloc/largeobjectalloc2.exe
+tests/gc/stress/largeobjectalloc/largeobjectalloc3.exe
+tests/gc/stress/longhaul/threadedgraph.exe
+tests/gc/stress/redblacktree/redblacktree.exe
+tests/il_bvt/base/add.exe
+tests/il_bvt/base/add_ovf.exe
+tests/il_bvt/base/and.exe
+tests/il_bvt/base/arglist.exe
+tests/il_bvt/base/beq.exe
+tests/il_bvt/base/bge.exe
+tests/il_bvt/base/bgt.exe
+tests/il_bvt/base/ble.exe
+tests/il_bvt/base/blt.exe
+tests/il_bvt/base/bne.exe
+tests/il_bvt/base/br.exe
+tests/il_bvt/base/break.exe
+tests/il_bvt/base/brfalse.exe
+tests/il_bvt/base/brtrue.exe
+tests/il_bvt/base/call.exe
+tests/il_bvt/base/ceq.exe
+tests/il_bvt/base/cgt.exe
+tests/il_bvt/base/ckfinite.exe
+tests/il_bvt/base/clt.exe
+tests/il_bvt/base/conv.exe
+tests/il_bvt/base/conv_ovf.exe
+tests/il_bvt/base/cpblk.exe
+tests/il_bvt/base/div.exe
+tests/il_bvt/base/dup.exe
+tests/il_bvt/base/initblk.exe
+tests/il_bvt/base/jmp.exe
+tests/il_bvt/base/ldarg_n.exe
+tests/il_bvt/base/ldargs_stargs.exe
+tests/il_bvt/base/ldarg_starg.exe
+tests/il_bvt/base/ldc.exe
+tests/il_bvt/base/ldc_i4_n.exe
+tests/il_bvt/base/ldftn_calli.exe
+tests/il_bvt/base/ldind_stind.exe
+tests/il_bvt/base/ldloca.exe
+tests/il_bvt/base/ldloc_stloc.exe
+tests/il_bvt/base/ldnull.exe
+tests/il_bvt/base/mul.exe
+tests/il_bvt/base/mul_ovf.exe
+tests/il_bvt/base/neg.exe
+tests/il_bvt/base/nop.exe
+tests/il_bvt/base/not.exe
+tests/il_bvt/base/or.exe
+tests/il_bvt/base/pop.exe
+tests/il_bvt/base/rem.exe
+tests/il_bvt/base/ret.exe
+tests/il_bvt/base/shl.exe
+tests/il_bvt/base/shr.exe
+tests/il_bvt/base/sub.exe
+tests/il_bvt/base/sub_ovf.exe
+tests/il_bvt/base/switch.exe
+tests/il_bvt/base/tailcall.exe
+tests/il_bvt/base/unaligned.exe
+tests/il_bvt/base/varargs.exe
+tests/il_bvt/base/volatile.exe
+tests/il_bvt/base/xor.exe
+tests/il_bvt/conformance_base/add_i.exe
+tests/il_bvt/conformance_base/add_i4.exe
+tests/il_bvt/conformance_base/add_i8.exe
+tests/il_bvt/conformance_base/add_ovf_i1.exe
+tests/il_bvt/conformance_base/add_ovf_i2.exe
+tests/il_bvt/conformance_base/add_ovf_i4.exe
+tests/il_bvt/conformance_base/add_ovf_i8.exe
+tests/il_bvt/conformance_base/add_ovf_u1.exe
+tests/il_bvt/conformance_base/add_ovf_u2.exe
+tests/il_bvt/conformance_base/add_ovf_u4.exe
+tests/il_bvt/conformance_base/add_ovf_u8.exe
+tests/il_bvt/conformance_base/add_r4.exe
+tests/il_bvt/conformance_base/add_r8.exe
+tests/il_bvt/conformance_base/and_u4.exe
+tests/il_bvt/conformance_base/and_u8.exe
+tests/il_bvt/conformance_base/beq_i.exe
+tests/il_bvt/conformance_base/beq_i4.exe
+tests/il_bvt/conformance_base/beq_i8.exe
+tests/il_bvt/conformance_base/beq_r4.exe
+tests/il_bvt/conformance_base/beq_r8.exe
+tests/il_bvt/conformance_base/bge_i4.exe
+tests/il_bvt/conformance_base/bge_i8.exe
+tests/il_bvt/conformance_base/br.exe
+tests/il_bvt/conformance_base/bge_r4.exe
+tests/il_bvt/conformance_base/bge_r8.exe
+tests/il_bvt/conformance_base/bge_u.exe
+tests/il_bvt/conformance_base/bge_un_i4.exe
+tests/il_bvt/conformance_base/bge_un_i8.exe
+tests/il_bvt/conformance_base/bge_un_r4.exe
+tests/il_bvt/conformance_base/bge_un_r8.exe
+tests/il_bvt/conformance_base/bgt_i4.exe
+tests/il_bvt/conformance_base/bgt_i8.exe
+tests/il_bvt/conformance_base/bgt_r4.exe
+tests/il_bvt/conformance_base/bgt_r8.exe
+tests/il_bvt/conformance_base/bgt_u.exe
+tests/il_bvt/conformance_base/bgt_u4.exe
+tests/il_bvt/conformance_base/bgt_u8.exe
+tests/il_bvt/conformance_base/bgt_un_r4.exe
+tests/il_bvt/conformance_base/bgt_un_r8.exe
+tests/il_bvt/conformance_base/ble_i4.exe
+tests/il_bvt/conformance_base/ble_i8.exe
+tests/il_bvt/conformance_base/ble_r4.exe
+tests/il_bvt/conformance_base/ble_r8.exe
+tests/il_bvt/conformance_base/ble_u.exe
+tests/il_bvt/conformance_base/ble_u4.exe
+tests/il_bvt/conformance_base/ble_u8.exe
+tests/il_bvt/conformance_base/ble_un_r4.exe
+tests/il_bvt/conformance_base/ble_un_r8.exe
+tests/il_bvt/conformance_base/blt_i4.exe
+tests/il_bvt/conformance_base/blt_i8.exe
+tests/il_bvt/conformance_base/blt_r4.exe
+tests/il_bvt/conformance_base/blt_r8.exe
+tests/il_bvt/conformance_base/blt_u.exe
+tests/il_bvt/conformance_base/blt_u4.exe
+tests/il_bvt/conformance_base/blt_u8.exe
+tests/il_bvt/conformance_base/blt_un_r4.exe
+tests/il_bvt/conformance_base/blt_un_r8.exe
+tests/il_bvt/conformance_base/bne_u.exe
+tests/il_bvt/conformance_base/bne_u4.exe
+tests/il_bvt/conformance_base/bne_u8.exe
+tests/il_bvt/conformance_base/bne_un_r4.exe
+tests/il_bvt/conformance_base/bne_un_r8.exe
+tests/il_bvt/conformance_base/brfalse.exe
+tests/il_bvt/conformance_base/brtrue.exe
+tests/il_bvt/conformance_base/call.exe
+tests/il_bvt/conformance_base/ceq_i.exe
+tests/il_bvt/conformance_base/ceq_i4.exe
+tests/il_bvt/conformance_base/ceq_i8.exe
+tests/il_bvt/conformance_base/ceq_r4.exe
+tests/il_bvt/conformance_base/ceq_r8.exe
+tests/il_bvt/conformance_base/cgt_i4.exe
+tests/il_bvt/conformance_base/c_br.exe
+tests/il_bvt/conformance_base/cgt_i8.exe
+tests/il_bvt/conformance_base/cgt_r4.exe
+tests/il_bvt/conformance_base/cgt_r8.exe
+tests/il_bvt/conformance_base/cgt_u.exe
+tests/il_bvt/conformance_base/cgt_u4.exe
+tests/il_bvt/conformance_base/cgt_u8.exe
+tests/il_bvt/conformance_base/cgt_un_r4.exe
+tests/il_bvt/conformance_base/cgt_un_r8.exe
+tests/il_bvt/conformance_base/ckfinite_r4.exe
+tests/il_bvt/conformance_base/ckfinite_r8.exe
+tests/il_bvt/conformance_base/clt_i4.exe
+tests/il_bvt/conformance_base/clt_i8.exe
+tests/il_bvt/conformance_base/clt_r4.exe
+tests/il_bvt/conformance_base/clt_r8.exe
+tests/il_bvt/conformance_base/clt_u.exe
+tests/il_bvt/conformance_base/clt_u4.exe
+tests/il_bvt/conformance_base/clt_u8.exe
+tests/il_bvt/conformance_base/clt_un_r4.exe
+tests/il_bvt/conformance_base/clt_un_r8.exe
+tests/il_bvt/conformance_base/convdll.exe
+tests/il_bvt/conformance_base/conv_i4.exe
+tests/il_bvt/conformance_base/conv_ovf_i4_i1.exe
+tests/il_bvt/conformance_base/conv_r4.exe
+tests/il_bvt/conformance_base/conv_ovf_i4_i2.exe
+tests/il_bvt/conformance_base/conv_ovf_i4_u4.exe
+tests/il_bvt/conformance_base/conv_ovf_i8_i.exe
+tests/il_bvt/conformance_base/conv_ovf_i8_i4.exe
+tests/il_bvt/conformance_base/conv_ovf_i8_u8.exe
+tests/il_bvt/conformance_base/conv_ovf_r8_i.exe
+tests/il_bvt/conformance_base/conv_ovf_r8_i4.exe
+tests/il_bvt/conformance_base/conv_ovf_r8_i8.exe
+tests/il_bvt/conformance_base/conv_ovf_u4_i.exe
+tests/il_bvt/conformance_base/conv_ovf_u4_i4.exe
+tests/il_bvt/conformance_base/conv_ovf_u4_u1.exe
+tests/il_bvt/conformance_base/conv_ovf_u4_u2.exe
+tests/il_bvt/conformance_base/conv_ovf_u8_i8.exe
+tests/il_bvt/conformance_base/conv_ovf_u8_u4.exe
+tests/il_bvt/conformance_base/cpblk.exe
+tests/il_bvt/conformance_base/c_brfalse.exe
+tests/il_bvt/conformance_base/c_brtrue.exe
+tests/il_bvt/conformance_base/c_call.exe
+tests/il_bvt/conformance_base/c_cpblk.exe
+tests/il_bvt/conformance_base/dup4.exe
+tests/il_bvt/conformance_base/c_initblk.exe
+tests/il_bvt/conformance_base/c_ldvirtftn.exe
+tests/il_bvt/conformance_base/c_localloc.exe
+tests/il_bvt/conformance_base/c_nop.exe
+tests/il_bvt/conformance_base/c_ret.exe
+tests/il_bvt/conformance_base/c_switch.exe
+tests/il_bvt/conformance_base/div_i4.exe
+tests/il_bvt/conformance_base/div_i8.exe
+tests/il_bvt/conformance_base/div_r4.exe
+tests/il_bvt/conformance_base/div_r8.exe
+tests/il_bvt/conformance_base/div_u4.exe
+tests/il_bvt/conformance_base/div_u8.exe
+tests/il_bvt/conformance_base/dup8.exe
+tests/il_bvt/conformance_base/dupi.exe
+tests/il_bvt/conformance_base/initblk.exe
+tests/il_bvt/conformance_base/ldarga_i.exe
+tests/il_bvt/conformance_base/ldarga_i4.exe
+tests/il_bvt/conformance_base/ldarga_i8.exe
+tests/il_bvt/conformance_base/ldarga_r4.exe
+tests/il_bvt/conformance_base/ldarga_r8.exe
+tests/il_bvt/conformance_base/ldarga_ref.exe
+tests/il_bvt/conformance_base/ldarg_i.exe
+tests/il_bvt/conformance_base/ldarg_i4.exe
+tests/il_bvt/conformance_base/ldarg_i8.exe
+tests/il_bvt/conformance_base/ldarg_r4.exe
+tests/il_bvt/conformance_base/ldarg_r8.exe
+tests/il_bvt/conformance_base/ldarg_ref.exe
+tests/il_bvt/conformance_base/ldc_i4.exe
+tests/il_bvt/conformance_base/ldc_i8.exe
+tests/il_bvt/conformance_base/ldc_r4.exe
+tests/il_bvt/conformance_base/ldc_r8.exe
+tests/il_bvt/conformance_base/ldftn.exe
+tests/il_bvt/conformance_base/ldind_i.exe
+tests/il_bvt/conformance_base/ldind_i1.exe
+tests/il_bvt/conformance_base/ldind_i2.exe
+tests/il_bvt/conformance_base/ldind_i4.exe
+tests/il_bvt/conformance_base/ldind_i8.exe
+tests/il_bvt/conformance_base/ldind_r4.exe
+tests/il_bvt/conformance_base/ldind_r8.exe
+tests/il_bvt/conformance_base/ldind_ref.exe
+tests/il_bvt/conformance_base/ldind_u1.exe
+tests/il_bvt/conformance_base/ldind_u2.exe
+tests/il_bvt/conformance_base/ldind_u4.exe
+tests/il_bvt/conformance_base/ldloc_i.exe
+tests/il_bvt/conformance_base/ldloc_i4.exe
+tests/il_bvt/conformance_base/ldloc_i8.exe
+tests/il_bvt/conformance_base/ldloc_r4.exe
+tests/il_bvt/conformance_base/ldloc_r8.exe
+tests/il_bvt/conformance_base/ldloc_ref.exe
+tests/il_bvt/conformance_base/ldnull_ref.exe
+tests/il_bvt/conformance_base/ldvirtftn.exe
+tests/il_bvt/conformance_base/localloc.exe
+tests/il_bvt/conformance_base/mul_i4.exe
+tests/il_bvt/conformance_base/mul_i8.exe
+tests/il_bvt/conformance_base/mul_ovf_i1.exe
+tests/il_bvt/conformance_base/mul_ovf_i2.exe
+tests/il_bvt/conformance_base/mul_ovf_i4.exe
+tests/il_bvt/conformance_base/mul_ovf_i8.exe
+tests/il_bvt/conformance_base/mul_ovf_u1.exe
+tests/il_bvt/conformance_base/mul_ovf_u2.exe
+tests/il_bvt/conformance_base/mul_ovf_u4.exe
+tests/il_bvt/conformance_base/mul_ovf_u8.exe
+tests/il_bvt/conformance_base/mul_r4.exe
+tests/il_bvt/conformance_base/mul_r8.exe
+tests/il_bvt/conformance_base/neg_i4.exe
+tests/il_bvt/conformance_base/neg_i8.exe
+tests/il_bvt/conformance_base/neg_r4.exe
+tests/il_bvt/conformance_base/neg_r8.exe
+tests/il_bvt/conformance_base/nop.exe
+tests/il_bvt/conformance_base/not_u4.exe
+tests/il_bvt/conformance_base/not_u8.exe
+tests/il_bvt/conformance_base/or_u4.exe
+tests/il_bvt/conformance_base/pop4.exe
+tests/il_bvt/conformance_base/or_u8.exe
+tests/il_bvt/conformance_base/pop8.exe
+tests/il_bvt/conformance_base/popi.exe
+tests/il_bvt/conformance_base/refs.exe
+tests/il_bvt/conformance_base/rem_i4.exe
+tests/il_bvt/conformance_base/rem_i8.exe
+tests/il_bvt/conformance_base/rem_r4.exe
+tests/il_bvt/conformance_base/rem_r8.exe
+tests/il_bvt/conformance_base/rem_u4.exe
+tests/il_bvt/conformance_base/rem_u8.exe
+tests/il_bvt/conformance_base/ret.exe
+tests/il_bvt/conformance_base/ret_i.exe
+tests/il_bvt/conformance_base/ret_i4.exe
+tests/il_bvt/conformance_base/ret_i8.exe
+tests/il_bvt/conformance_base/ret_r4.exe
+tests/il_bvt/conformance_base/ret_r8.exe
+tests/il_bvt/conformance_base/ret_ref.exe
+tests/il_bvt/conformance_base/shl_u4.exe
+tests/il_bvt/conformance_base/shl_u8.exe
+tests/il_bvt/conformance_base/shr_i4.exe
+tests/il_bvt/conformance_base/shr_i8.exe
+tests/il_bvt/conformance_base/shr_u4.exe
+tests/il_bvt/conformance_base/shr_u8.exe
+tests/il_bvt/conformance_base/sizeof.exe
+tests/il_bvt/conformance_base/starg_i.exe
+tests/il_bvt/conformance_base/starg_i4.exe
+tests/il_bvt/conformance_base/starg_i8.exe
+tests/il_bvt/conformance_base/starg_r4.exe
+tests/il_bvt/conformance_base/starg_r8.exe
+tests/il_bvt/conformance_base/starg_ref.exe
+tests/il_bvt/conformance_base/stind_i.exe
+tests/il_bvt/conformance_base/stind_i1.exe
+tests/il_bvt/conformance_base/stind_i2.exe
+tests/il_bvt/conformance_base/stind_i4.exe
+tests/il_bvt/conformance_base/stind_i8.exe
+tests/il_bvt/conformance_base/stind_r4.exe
+tests/il_bvt/conformance_base/stind_r8.exe
+tests/il_bvt/conformance_base/stind_ref.exe
+tests/il_bvt/conformance_base/stloc_i.exe
+tests/il_bvt/conformance_base/stloc_i4.exe
+tests/il_bvt/conformance_base/stloc_i8.exe
+tests/il_bvt/conformance_base/stloc_r4.exe
+tests/il_bvt/conformance_base/stloc_r8.exe
+tests/il_bvt/conformance_base/stloc_ref.exe
+tests/il_bvt/conformance_base/sub_i.exe
+tests/il_bvt/conformance_base/sub_i4.exe
+tests/il_bvt/conformance_base/sub_i8.exe
+tests/il_bvt/conformance_base/sub_ovf_i1.exe
+tests/il_bvt/conformance_base/sub_ovf_i2.exe
+tests/il_bvt/conformance_base/sub_ovf_i4.exe
+tests/il_bvt/conformance_base/sub_ovf_i8.exe
+tests/il_bvt/conformance_base/sub_ovf_u1.exe
+tests/il_bvt/conformance_base/sub_ovf_u2.exe
+tests/il_bvt/conformance_base/sub_ovf_u4.exe
+tests/il_bvt/conformance_base/sub_ovf_u8.exe
+tests/il_bvt/conformance_base/sub_r4.exe
+tests/il_bvt/conformance_base/sub_r8.exe
+tests/il_bvt/conformance_base/switch.exe
+tests/il_bvt/conformance_base/xor_u4.exe
+tests/il_bvt/conformance_base/xor_u8.exe
+tests/il_bvt/objectmodel/array_tests.exe
+tests/il_bvt/objectmodel/box_unbox.exe
+tests/il_bvt/objectmodel/callintf.exe
+tests/il_bvt/objectmodel/callnonvirt.exe
+tests/il_bvt/objectmodel/callstatic.exe
+tests/il_bvt/objectmodel/callsuper.exe
+tests/il_bvt/objectmodel/callvirt.exe
+tests/il_bvt/objectmodel/castclass.exe
+tests/il_bvt/objectmodel/cpobj.exe
+tests/il_bvt/objectmodel/fielda_tests.exe
+tests/il_bvt/objectmodel/field_tests.exe
+tests/il_bvt/objectmodel/initobj.exe
+tests/il_bvt/objectmodel/isinst.exe
+tests/il_bvt/objectmodel/ldlen.exe
+tests/il_bvt/objectmodel/ldobj.exe
+tests/il_bvt/objectmodel/ldstr.exe
+tests/il_bvt/objectmodel/ldtoken.exe
+tests/il_bvt/objectmodel/ldvirtftn.exe
+tests/il_bvt/objectmodel/localloc.exe
+tests/il_bvt/objectmodel/newobj.exe
+tests/il_bvt/objectmodel/seh_tests.exe
+tests/il_bvt/objectmodel/throw.exe
+tests/perf/xmlperf1.exe
+tests/security/verifier/delegate/call_ctor.exe
+tests/security/verifier/delegate/call_ctor1.exe
+tests/security/verifier/delegate/call_ctor10.exe
+tests/security/verifier/delegate/call_ctor11.exe
+tests/security/verifier/delegate/call_ctor12.exe
+tests/security/verifier/delegate/call_ctor13.exe
+tests/security/verifier/delegate/call_ctor2.exe
+tests/security/verifier/delegate/call_ctor3.exe
+tests/security/verifier/delegate/call_ctor4.exe
+tests/security/verifier/delegate/call_ctor5.exe
+tests/security/verifier/delegate/call_ctor6.exe
+tests/security/verifier/delegate/call_ctor7.exe
+tests/security/verifier/delegate/call_ctor8.exe
+tests/security/verifier/delegate/call_ctor9.exe
+tests/security/verifier/delegate/ctor_badmerge1.exe
+tests/security/verifier/delegate/ctor_deleg.exe
+tests/security/verifier/delegate/ctor_garbage1.exe
+tests/security/verifier/delegate/ctor_garbage2.exe
+tests/security/verifier/delegate/ctor_garbage3.exe
+tests/security/verifier/delegate/dlg1.exe
+tests/security/verifier/delegate/ctor_global.exe
+tests/security/verifier/delegate/ctor_iface.exe
+tests/security/verifier/delegate/ctor_merge1.exe
+tests/security/verifier/delegate/ctor_merge2.exe
+tests/security/verifier/delegate/ctor_null1.exe
+tests/security/verifier/delegate/ctor_null2.exe
+tests/security/verifier/delegate/ctor_strict1.exe
+tests/security/verifier/delegate/ctor_unrelated1.exe
+tests/security/verifier/delegate/ctor_unrelated2.exe
+tests/security/verifier/delegate/ctor_unrelated3.exe
+tests/security/verifier/delegate/ctor_unrelated4.exe
+tests/security/verifier/delegate/ctor_unrelated5.exe
+tests/security/verifier/delegate/ctor_wrongarg1.exe
+tests/security/verifier/delegate/ctor_wrongarg2.exe
+tests/security/verifier/delegate/ctor_wrongconv1.exe
+tests/security/verifier/delegate/ctor_wrongconv2.exe
+tests/security/verifier/delegate/decl_ctor1.exe
+tests/security/verifier/delegate/decl_ctor2.exe
+tests/security/verifier/delegate/decl_invoke1.exe
+tests/security/verifier/delegate/dlg10.exe
+tests/security/verifier/delegate/decl_invoke2.exe
+tests/security/verifier/delegate/dlg12.exe
+tests/security/verifier/delegate/dlg13.exe
+tests/security/verifier/delegate/dlg14.exe
+tests/security/verifier/delegate/dlg15.exe
+tests/security/verifier/delegate/dlg16.exe
+tests/security/verifier/delegate/dlg17.exe
+tests/security/verifier/delegate/dlg18.exe
+tests/security/verifier/delegate/dlg19.exe
+tests/security/verifier/delegate/dlg2.exe
+tests/security/verifier/delegate/dlg20.exe
+tests/security/verifier/delegate/dlg22.exe
+tests/security/verifier/delegate/dlg23.exe
+tests/security/verifier/delegate/dlg24.exe
+tests/security/verifier/delegate/dlg25.exe
+tests/security/verifier/delegate/dlg26.exe
+tests/security/verifier/delegate/dlg27.exe
+tests/security/verifier/delegate/dlg28.exe
+tests/security/verifier/delegate/dlg3.exe
+tests/security/verifier/delegate/dlg4.exe
+tests/security/verifier/delegate/dlg5.exe
+tests/security/verifier/delegate/dlg6.exe
+tests/security/verifier/delegate/dlg7.exe
+tests/security/verifier/delegate/dlg8.exe
+tests/security/verifier/delegate/dlg9.exe
+tests/security/verifier/delegate/dlg_a.exe
+tests/security/verifier/delegate/invoke_flowctrl1.exe
+tests/security/verifier/delegate/invoke_tail1.exe
+tests/security/verifier/delegate/invoke_tail2.exe
+tests/security/verifier/delegate/invoke_tail3.exe
+tests/security/verifier/delegate/invoke_wrongconv1.exe
+tests/security/verifier/delegate/invoke_wrongconv2.exe
+tests/security/verifier/delegate/invoke_wronginstr1.exe
+tests/security/verifier/delegate/invoke_wronginstr2.exe
+tests/security/verifier/delegate/invoke_wronginstr3.exe
+tests/security/verifier/delegate/invoke_wrongsig1.exe
+tests/security/verifier/delegate/invoke_wrongsig2.exe
+tests/security/verifier/delegate/merge_fptr.exe
+tests/security/verifier/exceptions/b1/excep1-1.exe
+tests/security/verifier/exceptions/b1/excep1-2.exe
+tests/security/verifier/exceptions/b1/excep1-3.exe
+tests/security/verifier/exceptions/b1/excep1-4.exe
+tests/security/verifier/exceptions/b1/excep1-5.exe
+tests/security/verifier/exceptions/b1/excep10-1_a.exe
+tests/security/verifier/exceptions/b1/excep10-5_a.exe
+tests/security/verifier/exceptions/b1/excep11-1.exe
+tests/security/verifier/exceptions/b1/excep11-2.exe
+tests/security/verifier/exceptions/b1/excep11-3.exe
+tests/security/verifier/exceptions/b1/excep11-4.exe
+tests/security/verifier/exceptions/b1/excep2-1.exe
+tests/security/verifier/exceptions/b1/excep2-2.exe
+tests/security/verifier/exceptions/b1/excep2-3.exe
+tests/security/verifier/exceptions/b1/excep2-4.exe
+tests/security/verifier/exceptions/b1/excep2-5.exe
+tests/security/verifier/exceptions/b1/excep3-1.exe
+tests/security/verifier/exceptions/b1/excep4-1.exe
+tests/security/verifier/exceptions/b1/excep5-1.exe
+tests/security/verifier/exceptions/b1/excep6-1.exe
+tests/security/verifier/exceptions/b1/excep6_a.exe
+tests/security/verifier/exceptions/b1/excep7-1.exe
+tests/security/verifier/exceptions/b1/excep8-1.exe
+tests/security/verifier/exceptions/b1/excep8-2.exe
+tests/security/verifier/exceptions/b1/excep9-1.exe
+tests/security/verifier/exceptions/b1/excep9-2.exe
+tests/security/verifier/exceptions/b1/excep9-3.exe
+tests/security/verifier/exceptions/b1/excep9-4.exe
+tests/security/verifier/exceptions/b1/excep9-6.exe
+tests/security/verifier/exceptions/b1/excep9-7.exe
+tests/security/verifier/exceptions/b2/finallytest.exe
+tests/security/verifier/exceptions/b2/test_10_catch.exe
+tests/security/verifier/exceptions/b2/test_10_fault.exe
+tests/security/verifier/exceptions/b2/test_10_filter.exe
+tests/security/verifier/exceptions/b2/test_10_finally.exe
+tests/security/verifier/exceptions/b2/test_10_try.exe
+tests/security/verifier/exceptions/b2/test_111_fault.exe
+tests/security/verifier/exceptions/b2/test_11_catch.exe
+tests/security/verifier/exceptions/b2/test_11_fault.exe
+tests/security/verifier/exceptions/b2/test_11_filter.exe
+tests/security/verifier/exceptions/b2/test_11_finally.exe
+tests/security/verifier/exceptions/b2/test_11_try.exe
+tests/security/verifier/exceptions/b2/test_12_catch.exe
+tests/security/verifier/exceptions/b2/test_12_filter.exe
+tests/security/verifier/exceptions/b2/test_12_try.exe
+tests/security/verifier/exceptions/b2/test_13_catch.exe
+tests/security/verifier/exceptions/b2/test_13_fault.exe
+tests/security/verifier/exceptions/b2/test_13_filter.exe
+tests/security/verifier/exceptions/b2/test_13_finally.exe
+tests/security/verifier/exceptions/b2/test_13_try.exe
+tests/security/verifier/exceptions/b2/test_14_catch.exe
+tests/security/verifier/exceptions/b2/test_14_fault.exe
+tests/security/verifier/exceptions/b2/test_14_filter.exe
+tests/security/verifier/exceptions/b2/test_14_finally.exe
+tests/security/verifier/exceptions/b2/test_14_try.exe
+tests/security/verifier/exceptions/b2/test_14_try_a.exe
+tests/security/verifier/exceptions/b2/test_15_fault.exe
+tests/security/verifier/exceptions/b2/test_15_finally.exe
+tests/security/verifier/exceptions/b2/test_15_try.exe
+tests/security/verifier/exceptions/b2/test_15_try_a.exe
+tests/security/verifier/exceptions/b2/test_16_catch.exe
+tests/security/verifier/exceptions/b2/test_16_fault.exe
+tests/security/verifier/exceptions/b2/test_16_finally.exe
+tests/security/verifier/exceptions/b2/test_16_try.exe
+tests/security/verifier/exceptions/b2/test_17_catch.exe
+tests/security/verifier/exceptions/b2/test_18_try.exe
+tests/security/verifier/exceptions/b2/test_17_fault.exe
+tests/security/verifier/exceptions/b2/test_17_finally.exe
+tests/security/verifier/exceptions/b2/test_18_catch.exe
+tests/security/verifier/exceptions/b2/test_18_fault.exe
+tests/security/verifier/exceptions/b2/test_18_finally.exe
+tests/security/verifier/exceptions/b2/test_19_fault.exe
+tests/security/verifier/exceptions/b2/test_19_finally.exe
+tests/security/verifier/exceptions/b2/test_1_catch.exe
+tests/security/verifier/exceptions/b2/test_1_fault.exe
+tests/security/verifier/exceptions/b2/test_1_filter.exe
+tests/security/verifier/exceptions/b2/test_1_finally.exe
+tests/security/verifier/exceptions/b2/test_1_try.exe
+tests/security/verifier/exceptions/b2/test_20_catch.exe
+tests/security/verifier/exceptions/b2/test_20_try.exe
+tests/security/verifier/exceptions/b2/test_21_catch.exe
+tests/security/verifier/exceptions/b2/test_21_try.exe
+tests/security/verifier/exceptions/b2/test_22_catch.exe
+tests/security/verifier/exceptions/b2/test_22_try.exe
+tests/security/verifier/exceptions/b2/test_23_try.exe
+tests/security/verifier/exceptions/b2/test_24_catch.exe
+tests/security/verifier/exceptions/b2/test_24_try.exe
+tests/security/verifier/exceptions/b2/test_25_catch.exe
+tests/security/verifier/exceptions/b2/test_25_try.exe
+tests/security/verifier/exceptions/b2/test_26_catch.exe
+tests/security/verifier/exceptions/b2/test_26_try.exe
+tests/security/verifier/exceptions/b2/test_27_try.exe
+tests/security/verifier/exceptions/b2/test_28_try.exe
+tests/security/verifier/exceptions/b2/test_29_try.exe
+tests/security/verifier/exceptions/b2/test_2_catch.exe
+tests/security/verifier/exceptions/b2/test_2_fault.exe
+tests/security/verifier/exceptions/b2/test_2_filter.exe
+tests/security/verifier/exceptions/b2/test_2_finally.exe
+tests/security/verifier/exceptions/b2/test_2_try.exe
+tests/security/verifier/exceptions/b2/test_30_try.exe
+tests/security/verifier/exceptions/b2/test_31_try.exe
+tests/security/verifier/exceptions/b2/test_32_try.exe
+tests/security/verifier/exceptions/b2/test_33_try.exe
+tests/security/verifier/exceptions/b2/test_34_try.exe
+tests/security/verifier/exceptions/b2/test_35_try.exe
+tests/security/verifier/exceptions/b2/test_36_try.exe
+tests/security/verifier/exceptions/b2/test_37_try.exe
+tests/security/verifier/exceptions/b2/test_38_try.exe
+tests/security/verifier/exceptions/b2/test_3_catch.exe
+tests/security/verifier/exceptions/b2/test_3_fault.exe
+tests/security/verifier/exceptions/b2/test_3_filter.exe
+tests/security/verifier/exceptions/b2/test_3_finally.exe
+tests/security/verifier/exceptions/b2/test_3_try.exe
+tests/security/verifier/exceptions/b2/test_4_catch.exe
+tests/security/verifier/exceptions/b2/test_4_fault.exe
+tests/security/verifier/exceptions/b2/test_4_filter.exe
+tests/security/verifier/exceptions/b2/test_4_finally.exe
+tests/security/verifier/exceptions/b2/test_4_try.exe
+tests/security/verifier/exceptions/b2/test_5_catch.exe
+tests/security/verifier/exceptions/b2/test_5_fault.exe
+tests/security/verifier/exceptions/b2/test_5_finally.exe
+tests/security/verifier/exceptions/b2/test_5_try.exe
+tests/security/verifier/exceptions/b2/test_5_try_a.exe
+tests/security/verifier/exceptions/b2/test_6_catch.exe
+tests/security/verifier/exceptions/b2/test_6_fault.exe
+tests/security/verifier/exceptions/b2/test_6_filter.exe
+tests/security/verifier/exceptions/b2/test_6_finally.exe
+tests/security/verifier/exceptions/b2/test_6_try.exe
+tests/security/verifier/exceptions/b2/test_7_catch.exe
+tests/security/verifier/exceptions/b2/test_7_catch_a.exe
+tests/security/verifier/exceptions/b2/test_7_fault.exe
+tests/security/verifier/exceptions/b2/test_7_filter.exe
+tests/security/verifier/exceptions/b2/test_7_finally.exe
+tests/security/verifier/exceptions/b2/test_7_try.exe
+tests/security/verifier/exceptions/b2/test_8_catch.exe
+tests/security/verifier/exceptions/b2/test_8_fault.exe
+tests/security/verifier/exceptions/b2/test_8_filter.exe
+tests/security/verifier/exceptions/b2/test_8_finally.exe
+tests/security/verifier/exceptions/b2/test_8_try.exe
+tests/security/verifier/exceptions/b2/test_9_catch.exe
+tests/security/verifier/exceptions/b2/test_9_fault.exe
+tests/security/verifier/exceptions/b2/test_9_filter.exe
+tests/security/verifier/exceptions/b2/test_9_finally.exe
+tests/security/verifier/exceptions/b2/test_9_try.exe
+tests/security/verifier/exceptions/b2jit/nbug.exe
+tests/security/verifier/exceptions/b2jit/br_in_try.exe
+tests/security/verifier/exceptions/b2jit/filter_handler.exe
+tests/security/verifier/exceptions/b2jit/leave_block.exe
+tests/security/verifier/exceptions/b2jit/leave_in_try.exe
+tests/security/verifier/exceptions/b2jit/nested_seh.exe
+tests/security/verifier/exceptions/b2jit/overlap_try.exe
+tests/security/verifier/exceptions/b2jit/overlap_try1.exe
+tests/security/verifier/exceptions/b2jit/seh_in_filter.exe
+tests/security/verifier/exceptions/b2jit/test_101_catch.exe
+tests/security/verifier/exceptions/b2jit/test_102_catch.exe
+tests/security/verifier/exceptions/b2jit/test_102_try.exe
+tests/security/verifier/exceptions/b2jit/test_103_fault.exe
+tests/security/verifier/exceptions/b2jit/test_103_try.exe
+tests/security/verifier/exceptions/b2jit/test_105_catch.exe
+tests/security/verifier/exceptions/b2jit/test_106_catch.exe
+tests/security/verifier/exceptions/b2jit/test_10_catch.exe
+tests/security/verifier/exceptions/b2jit/test_10_fault.exe
+tests/security/verifier/exceptions/b2jit/test_10_filter.exe
+tests/security/verifier/exceptions/b2jit/test_10_finally.exe
+tests/security/verifier/exceptions/b2jit/test_10_try.exe
+tests/security/verifier/exceptions/b2jit/test_116_try.exe
+tests/security/verifier/exceptions/b2jit/test_117_try.exe
+tests/security/verifier/exceptions/b2jit/test_11_catch.exe
+tests/security/verifier/exceptions/b2jit/test_11_fault.exe
+tests/security/verifier/exceptions/b2jit/test_11_filter.exe
+tests/security/verifier/exceptions/b2jit/test_11_finally.exe
+tests/security/verifier/exceptions/b2jit/test_11_try.exe
+tests/security/verifier/exceptions/b2jit/test_120_catch.exe
+tests/security/verifier/exceptions/b2jit/test_121_catch.exe
+tests/security/verifier/exceptions/b2jit/test_12_filter.exe
+tests/security/verifier/exceptions/b2jit/test_131_try.exe
+tests/security/verifier/exceptions/b2jit/test_13a_catch.exe
+tests/security/verifier/exceptions/b2jit/test_13_catch.exe
+tests/security/verifier/exceptions/b2jit/test_13_fault.exe
+tests/security/verifier/exceptions/b2jit/test_13_filter.exe
+tests/security/verifier/exceptions/b2jit/test_13_finally.exe
+tests/security/verifier/exceptions/b2jit/test_13_try.exe
+tests/security/verifier/exceptions/b2jit/test_14_catch.exe
+tests/security/verifier/exceptions/b2jit/test_14_fault.exe
+tests/security/verifier/exceptions/b2jit/test_14_filter.exe
+tests/security/verifier/exceptions/b2jit/test_14_finally.exe
+tests/security/verifier/exceptions/b2jit/test_14_try.exe
+tests/security/verifier/exceptions/b2jit/test_15_fault.exe
+tests/security/verifier/exceptions/b2jit/test_15_finally.exe
+tests/security/verifier/exceptions/b2jit/test_15_try.exe
+tests/security/verifier/exceptions/b2jit/test_16_catch.exe
+tests/security/verifier/exceptions/b2jit/test_16_fault.exe
+tests/security/verifier/exceptions/b2jit/test_16_finally.exe
+tests/security/verifier/exceptions/b2jit/test_16_try.exe
+tests/security/verifier/exceptions/b2jit/test_17_catch.exe
+tests/security/verifier/exceptions/b2jit/test_17_fault.exe
+tests/security/verifier/exceptions/b2jit/test_17_finally.exe
+tests/security/verifier/exceptions/b2jit/test_18_catch.exe
+tests/security/verifier/exceptions/b2jit/test_18_fault.exe
+tests/security/verifier/exceptions/b2jit/test_18_try.exe
+tests/security/verifier/exceptions/b2jit/test_18_finally.exe
+tests/security/verifier/exceptions/b2jit/test_19a_fault.exe
+tests/security/verifier/exceptions/b2jit/test_19_fault.exe
+tests/security/verifier/exceptions/b2jit/test_19_finally.exe
+tests/security/verifier/exceptions/b2jit/test_1_catch.exe
+tests/security/verifier/exceptions/b2jit/test_1_fault.exe
+tests/security/verifier/exceptions/b2jit/test_1_filter.exe
+tests/security/verifier/exceptions/b2jit/test_1_finally.exe
+tests/security/verifier/exceptions/b2jit/test_1_try.exe
+tests/security/verifier/exceptions/b2jit/test_20_catch.exe
+tests/security/verifier/exceptions/b2jit/test_20_fault.exe
+tests/security/verifier/exceptions/b2jit/test_20_try.exe
+tests/security/verifier/exceptions/b2jit/test_21_catch.exe
+tests/security/verifier/exceptions/b2jit/test_21_fault.exe
+tests/security/verifier/exceptions/b2jit/test_21_try.exe
+tests/security/verifier/exceptions/b2jit/test_22_catch.exe
+tests/security/verifier/exceptions/b2jit/test_22_try.exe
+tests/security/verifier/exceptions/b2jit/test_24_catch.exe
+tests/security/verifier/exceptions/b2jit/test_24_try.exe
+tests/security/verifier/exceptions/b2jit/test_25_catch.exe
+tests/security/verifier/exceptions/b2jit/test_25_try.exe
+tests/security/verifier/exceptions/b2jit/test_26_catch.exe
+tests/security/verifier/exceptions/b2jit/test_26_try.exe
+tests/security/verifier/exceptions/b2jit/test_27_try.exe
+tests/security/verifier/exceptions/b2jit/test_28_try.exe
+tests/security/verifier/exceptions/b2jit/test_29_try.exe
+tests/security/verifier/exceptions/b2jit/test_2_catch.exe
+tests/security/verifier/exceptions/b2jit/test_2_fault.exe
+tests/security/verifier/exceptions/b2jit/test_2_filter.exe
+tests/security/verifier/exceptions/b2jit/test_2_finally.exe
+tests/security/verifier/exceptions/b2jit/test_2_try.exe
+tests/security/verifier/exceptions/b2jit/test_30_try.exe
+tests/security/verifier/exceptions/b2jit/test_31_try.exe
+tests/security/verifier/exceptions/b2jit/test_32_try.exe
+tests/security/verifier/exceptions/b2jit/test_33_try.exe
+tests/security/verifier/exceptions/b2jit/test_3_catch.exe
+tests/security/verifier/exceptions/b2jit/test_3_fault.exe
+tests/security/verifier/exceptions/b2jit/test_3_filter.exe
+tests/security/verifier/exceptions/b2jit/test_3_finally.exe
+tests/security/verifier/exceptions/b2jit/test_40_try.exe
+tests/security/verifier/exceptions/b2jit/test_4_catch.exe
+tests/security/verifier/exceptions/b2jit/test_4_fault.exe
+tests/security/verifier/exceptions/b2jit/test_4_filter.exe
+tests/security/verifier/exceptions/b2jit/test_4_finally.exe
+tests/security/verifier/exceptions/b2jit/test_4_try.exe
+tests/security/verifier/exceptions/b2jit/test_5_catch.exe
+tests/security/verifier/exceptions/b2jit/test_5_fault.exe
+tests/security/verifier/exceptions/b2jit/test_5_finally.exe
+tests/security/verifier/exceptions/b2jit/test_5_try.exe
+tests/security/verifier/exceptions/b2jit/test_6_catch.exe
+tests/security/verifier/exceptions/b2jit/test_6_fault.exe
+tests/security/verifier/exceptions/b2jit/test_6_filter.exe
+tests/security/verifier/exceptions/b2jit/test_6_finally.exe
+tests/security/verifier/exceptions/b2jit/test_6_try.exe
+tests/security/verifier/exceptions/b2jit/test_7_catch.exe
+tests/security/verifier/exceptions/b2jit/test_7_fault.exe
+tests/security/verifier/exceptions/b2jit/test_7_filter.exe
+tests/security/verifier/exceptions/b2jit/test_7_finally.exe
+tests/security/verifier/exceptions/b2jit/test_7_try.exe
+tests/security/verifier/exceptions/b2jit/test_8_catch.exe
+tests/security/verifier/exceptions/b2jit/test_8_fault.exe
+tests/security/verifier/exceptions/b2jit/test_8_filter.exe
+tests/security/verifier/exceptions/b2jit/test_8_finally.exe
+tests/security/verifier/exceptions/b2jit/test_8_finallyb.exe
+tests/security/verifier/exceptions/b2jit/test_8_try.exe
+tests/security/verifier/exceptions/b2jit/test_9_catch.exe
+tests/security/verifier/exceptions/b2jit/test_9_fault.exe
+tests/security/verifier/exceptions/b2jit/test_9_filter.exe
+tests/security/verifier/exceptions/b2jit/test_9_finally.exe
+tests/security/verifier/exceptions/b2jit/test_9_try.exe
+tests/security/verifier/ilinstructions/arglist_neg_a.exe
+tests/security/verifier/ilinstructions/arglist_pos.exe
+tests/security/verifier/ilinstructions/break_pos.exe
+tests/security/verifier/ilinstructions/calli_neg1.exe
+tests/security/verifier/ilinstructions/call_neg1.exe
+tests/security/verifier/ilinstructions/ldftn_neg1.exe
+tests/security/verifier/ilinstructions/ldloca_neg.exe
+tests/security/verifier/ilinstructions/ldloc_neg.exe
+tests/security/verifier/ilinstructions/localloc_neg.exe
+tests/security/verifier/ilinstructions/ret_neg.exe
+tests/security/verifier/ilvalidation/afterret_a.exe
+tests/security/verifier/ilvalidation/branch1.exe
+tests/security/verifier/ilvalidation/branch2.exe
+tests/security/verifier/ilvalidation/lastbyte1_a.exe
+tests/security/verifier/ilvalidation/leave1.exe
+tests/security/verifier/ilvalidation/leave2.exe
+tests/security/verifier/ilvalidation/tailcall1_a.exe
+tests/security/verifier/ilvalidation/tailcall2.exe
+tests/security/verifier/ilvalidation/tailcalli1_a.exe
+tests/security/verifier/ilvalidation/tailcalli2.exe
+tests/security/verifier/ilvalidation/tailcallvirt1.exe
+tests/security/verifier/ilvalidation/tailcallvirt2.exe
+tests/security/verifier/ilvalidation/tailfollow_a.exe
+tests/security/verifier/ilvalidation/templ_pos.exe
+tests/security/verifier/ilvalidation/unaligned_pos.exe
+tests/security/verifier/ilvalidation/volatile_pos.exe
+tests/security/verifier/ilvalidation/zerosize.exe
+tests/security/verifier/opcodes/ckfinite.exe
+tests/security/verifier/opcodes/cpblk.exe
+tests/security/verifier/opcodes/cpobj.exe
+tests/security/verifier/opcodes/initblk.exe
+tests/security/verifier/opcodes/initobj_a.exe
+tests/security/verifier/opcodes/jmp.exe
+tests/security/verifier/opcodes/ldarg.exe
+tests/security/verifier/opcodes/ldarga.exe
+tests/security/verifier/opcodes/ldelema.exe
+tests/security/verifier/opcodes/ldfld.exe
+tests/security/verifier/opcodes/ldflda.exe
+tests/security/verifier/opcodes/ldftn.exe
+tests/security/verifier/opcodes/ldind_i.exe
+tests/security/verifier/opcodes/ldind_i1.exe
+tests/security/verifier/opcodes/ldind_i4.exe
+tests/security/verifier/opcodes/ldind_i8.exe
+tests/security/verifier/opcodes/ldind_r4.exe
+tests/security/verifier/opcodes/ldind_r8.exe
+tests/security/verifier/opcodes/ldind_u.exe
+tests/security/verifier/opcodes/ldind_u1.exe
+tests/security/verifier/opcodes/ldind_u4.exe
+tests/security/verifier/opcodes/ldloc.exe
+tests/security/verifier/opcodes/ldloca.exe
+tests/security/verifier/opcodes/ldobj.exe
+tests/security/verifier/opcodes/ldsfld.exe
+tests/security/verifier/opcodes/ldsflda.exe
+tests/security/verifier/opcodes/ldstr.exe
+tests/security/verifier/opcodes/localloc.exe
+tests/security/verifier/opcodes/newarr.exe
+tests/security/verifier/opcodes/refany.exe
+tests/security/verifier/opcodes/sizeof.exe
+tests/security/verifier/opcodes/starg.exe
+tests/security/verifier/opcodes/stelem1.exe
+tests/security/verifier/opcodes/stelem2.exe
+tests/security/verifier/opcodes/stind.exe
+tests/security/verifier/opcodes/stloc.exe
+tests/security/verifier/opcodes/stobj.exe
+tests/security/verifier/patch/arrbrefs.exe
+tests/security/verifier/patch/bad_endfilt_arg.exe
+tests/security/verifier/patch/bad_ldlen.exe
+tests/security/verifier/patch/bad_pop.exe
+tests/security/verifier/patch/bad_stelem_ref.exe
+tests/security/verifier/patch/bad_switch.exe
+tests/security/verifier/patch/bad_unbox_arg.exe
+tests/security/verifier/patch/brafterprfx.exe
+tests/security/verifier/patch/brtrue_bad_val.exe
+tests/security/verifier/patch/br_in_try.exe
+tests/security/verifier/patch/callvirt_val.exe
+tests/security/verifier/patch/callvirt_vt.exe
+tests/security/verifier/patch/castclass_not_ref.exe
+tests/security/verifier/patch/cpobj_need_val.exe
+tests/security/verifier/patch/dlg1.exe
+tests/security/verifier/patch/endfilterout.exe
+tests/security/verifier/patch/endfilt_must_be_1.exe
+tests/security/verifier/patch/endfinallyout.exe
+tests/security/verifier/patch/illegalop.exe
+tests/security/verifier/patch/jmp2.exe
+tests/security/verifier/patch/ldarga_bad_arg_num.exe
+tests/security/verifier/patch/ldelema_bad_index.exe
+tests/security/verifier/patch/ldelem_i4_bad_index.exe
+tests/security/verifier/patch/ldvftnst.exe
+tests/security/verifier/patch/leave_block.exe
+tests/security/verifier/patch/leave_in_try.exe
+tests/security/verifier/patch/locallocst.exe
+tests/security/verifier/patch/meth_abstract.exe
+tests/security/verifier/patch/nested_seh.exe
+tests/security/verifier/patch/newobj_stat.exe
+tests/security/verifier/patch/overlap_try.exe
+tests/security/verifier/patch/overlap_try1.exe
+tests/security/verifier/patch/seh5.exe
+tests/security/verifier/patch/seh_in_filter.exe
+tests/security/verifier/patch/stack_u.exe
+tests/security/verifier/patch/starg_bad_arg_num.exe
+tests/security/verifier/patch/stelem_i4_bad_index.exe
+tests/security/verifier/patch/stelem_ref_bad_index.exe
+tests/security/verifier/patch/stloc_bad_loc_num.exe
+tests/security/verifier/patch/stsfldtm.exe
+tests/security/verifier/patch/stsfld_inst.exe
+tests/security/verifier/patch/tail_ret_mismatch.exe
+tests/security/verifier/patch/tail_ret_mismatch1.exe
+tests/security/verifier/patch/throwint.exe
+tests/security/verifier/patch/unbox1.exe
+tests/security/verifier/patch/unbox_not_val.exe
+tests/security/verifier/patch/zerocode.exe
+tests/security/verifier/scope/scope25.exe
+tests/security/verifier/scope/another.exe
+tests/security/verifier/scope/anothermethod.exe
+tests/security/verifier/scope/anothermethodnoassem.exe
+tests/security/verifier/scope/anothermethodnoassm.exe
+tests/security/verifier/scope/anothernoassm.exe
+tests/security/verifier/scope/anotherprivatescope.exe
+tests/security/verifier/scope/anotherprivatescopediffassem.exe
+tests/security/verifier/scope/anotherstruct.exe
+tests/security/verifier/scope/anotherstuct.exe
+tests/security/verifier/scope/fptr1.exe
+tests/security/verifier/scope/scope1-2.exe
+tests/security/verifier/scope/scope1-3.exe
+tests/security/verifier/scope/scope11-1.exe
+tests/security/verifier/scope/scope11-2.exe
+tests/security/verifier/scope/scope11-3.exe
+tests/security/verifier/scope/scope11-4.exe
+tests/security/verifier/scope/scope12-1.exe
+tests/security/verifier/scope/scope12-14.exe
+tests/security/verifier/scope/scope12-15.exe
+tests/security/verifier/scope/scope12-16.exe
+tests/security/verifier/scope/scope12-17.exe
+tests/security/verifier/scope/scope12-18.exe
+tests/security/verifier/scope/scope12-19.exe
+tests/security/verifier/scope/scope12-2.exe
+tests/security/verifier/scope/scope12-3.exe
+tests/security/verifier/scope/scope12-4.exe
+tests/security/verifier/scope/scope12-5.exe
+tests/security/verifier/scope/scope12-6.exe
+tests/security/verifier/scope/scope12-7.exe
+tests/security/verifier/scope/scope14-1.exe
+tests/security/verifier/scope/scope16-1.exe
+tests/security/verifier/scope/scope2-1.exe
+tests/security/verifier/scope/scope2-2.exe
+tests/security/verifier/scope/scope20.exe
+tests/security/verifier/scope/scope21.exe
+tests/security/verifier/scope/scope22.exe
+tests/security/verifier/scope/scope3-1.exe
+tests/security/verifier/scope/scope4-1.exe
+tests/security/verifier/scope/scope4-2.exe
+tests/security/verifier/scope/scope4-3.exe
+tests/security/verifier/scope/scope5-1.exe
+tests/security/verifier/scope/scope5-2.exe
+tests/security/verifier/scope/scope6-1.exe
+tests/security/verifier/scope/scope6-2.exe
+tests/security/verifier/scope/scope7-1.exe
+tests/security/verifier/scope/scope7-2.exe
+tests/security/verifier/scope/scope8-1.exe
+tests/security/verifier/scope/scope8-2.exe
+tests/security/verifier/scope/scope8-3.exe
+tests/security/verifier/scope/scope8-4.exe
+tests/security/verifier/scope/scope8-5.exe
+tests/security/verifier/scope/scope8-6.exe
+tests/security/verifier/scope/scope8-7.exe
+tests/security/verifier/scope/scope9-1.exe
+tests/security/verifier/scope/scope9-10.exe
+tests/security/verifier/scope/scope9-11.exe
+tests/security/verifier/scope/scope9-12.exe
+tests/security/verifier/scope/scope9-14.exe
+tests/security/verifier/scope/scope9-2.exe
+tests/security/verifier/scope/scope9-3.exe
+tests/security/verifier/scope/scope9-4.exe
+tests/security/verifier/scope/scope9-5.exe
+tests/security/verifier/scope/scope9-6.exe
+tests/security/verifier/scope/scope9-7.exe
+tests/security/verifier/scope/scope9-8.exe
+tests/security/verifier/scope/scope9-9.exe
diff --git a/mcs/class/doc/rotor-test-notes b/mcs/class/doc/rotor-test-notes
new file mode 100644
index 00000000000..4df9bbdd7a6
--- /dev/null
+++ b/mcs/class/doc/rotor-test-notes
@@ -0,0 +1,135 @@
+NOTES
+
+tests/bcl/system/io/path/co9065pathseparator.exe
+
+ The separator on Windows is ";", but for us, it's ":".
+
+tests/bcl/system/io/path/co9050changeextension_str_str.cs
+
+ Error_34543: "><" is invalid on Windows, but valid on Unix
+ Error_4234: "\"|" is invalid on Windows, but valid on Unix
+
+tests/bcl/system/io/path/co9064invalidpathchars.exe
+
+ InvalidPathChars used by test are only invalid on Windows
+ (i.e. they are valid on UNIX file systems).
+
+tests/bcl/system/io/path/co9061ispathrooted_str.cs
+
+ Error_94821: "<|>" is a valid file on Unix
+
+test/bcl/system/io/file/co5692opentext_str.cs
+
+ Error_t749x: Incorrect exception thrown,
+ exc==System.IO.FileNotFoundException: File '.' not found.
+
+ ??? This tests expects UnauthorizedException, but it exposes
+ internal implementation of how StreamReader and FileStream
+ interact, so this might not a bug.
+
+tests/bcl/security/regex/co8834regex.exe FAILED
+tests/bcl/security/serialization/co8647binaryformatter.exe
+tests/bcl/security/serialization/co8649formatterservices.exe
+tests/bcl/security/serialization/co8650objectmanager.exe
+
+ Requires CAS support.
+
+tests/bcl/system/char/co4233gethashcode.exe
+
+ Bad test. Different GetHashCode implementation is totally legal.
+
+tests/bcl/system/collections/hashtable/co3949getobjectdata_sersc.exe
+
+ Err_748cdg! Expected value not returned, 0.75
+ Err_7132fgfg! Expected value not returned, 0.75
+
+ Bad test. Some tests access internal Hashtable informations to
+ compare.
+
+tests/bcl/system/io/binaryreader/co5637read_charr_ii.exe
+
+ ??? Maybe working but VERY slowly.
+
+tests/bcl/system/guid/co1183equals_dupl2.exe
+tests/bcl/system/guid/co1184ctor_default_dupl2.exe
+tests/bcl/system/guid/co1186ctor_string.exe
+tests/bcl/system/guid/co1187tostring_dupl2.exe
+tests/bcl/system/guid/co1188gethashcode_dupl2.exe
+
+ Bad test. Different GetHashCode implementation is totally legal.
+
+tests/bcl/system/datetime/co8567get_utcnow.exe
+tests/bcl/system/datetime/co8570parse_ifp.exe
+
+ I think this test is hanging
+
+tests/bcl/system/io/file/co5586copy_str_str_b.cs
+tests/bcl/system/io/file/co5587copy_str_str.log
+
+ Error_2091s! Incorrect exception thrown,
+ exc==System.IO.IOException: ** already exists
+
+ On Unix, "**" is a valid file name.
+
+tests/bcl/system/io/directory/co9025getcreationtime_str.cs
+tests/bcl/system/io/directory/co9026setcreationtime_str_dt.cs
+tests/bcl/system/io/directoryinfo/co5518get_creationtime.cs
+tests/bcl/system/io/directoryinfo/co9032setcreationtime_dt.cs
+tests/bcl/system/io/file/co9003getcreationtime_str.cs
+tests/bcl/system/io/file/co9004setcreationtime_str_dt.cs
+tests/bcl/system/io/fileinfo/co5703get_creationtime.cs
+tests/bcl/system/io/fileinfo/co9013set_creationtime_dt.cs
+
+ On POSIX systems, we do not record creation time.
+
+tests/bcl/system/io/directoryinfo/co5673getfiles_str.cs
+tests/bcl/system/io/directoryinfo/co5675getdirectories_str.cs
+
+ These tests are incorrect, as they hardcode \ as the directory
+ separator.
+
+tests/bcl/system/datetime/co5052tostring.cs
+tests/bcl/system/datetime/co5063toshorttimestring.cs
+tests/bcl/system/datetime/co5064toshortdatestring.exe
+tests/bcl/system/datetime/co5330tostring_str_ifp.exe
+tests/bcl/system/datetime/co8573tostring_str.cs
+
+ These tests fail on MS as well.
+
+tests/bcl/system/datetime/co8568parseexact_str_str_ifp_dts.cs
+tests/bcl/system/datetime/co8571parse_ifp_dts.cs
+
+ These tests hang on MS.
+
+tests/bcl/system/datetime/co5303parse_str.exe
+tests/bcl/system/datetime/co6008fromstring.exe
+
+ They are based on MS's undocumented feature. "MM/dd/yyyy HH:mm:ss"
+ is not allowed in ja-JP, and is not culture-independent common format,
+ but MS passes with ja-JP culture.
+
+tests/bcl/system/datetime/co7060ctor_iii_calendar.exe
+tests/bcl/system/datetime/co7061ctor_iiiiiii_calendar.exe
+tests/bcl/system/datetime/co7062ctor_iiiiii_calendar.exe
+
+ Calendar is not supported as yet.
+
+tests/dev/killself.exe
+
+ Working. Probably mis-detected by the script as a failure (return code).
+
+tests/bcl/system/decimal/co5470remainder_dec_dec.exe
+tests/bcl/system/decimal/co5471op_remainder.exe
+
+ POINTTOBREAK: (Co5471) Error_sdafs! Expected==1, got value==-32767
+ -79228162514264337593543950335 % -32768 == -32767 for Mono
+ (and even for Window's calc.exe ;-) but not for the Fx nor rotor.
+
+
+tests/bcl/system/double/co4264gethashcode.exe
+tests/bcl/system/sbyte/co4226gethashcode.exe
+tests/bcl/system/single/co4253gethashcode.exe
+tests/bcl/system/uintptr/co8539gethashcode.exe
+tests/bcl/system/valuetype/co3875gethashcode.exe
+
+ Bad tests. Different GetHashCode implementation is totally legal.