Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
2010-06-17 Zoltan Varga <vargaz@gmail.com>
* dtest.cs: Add an EventSet test.
2010-06-15 Zoltan Varga <vargaz@gmail.com>
* dtest.cs dtest-app.cs: New files containing the soft debugger tests, moved here
from mono/tests.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,47 @@
.assembly extern mscorlib
{
.ver 2:0:0:0
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
}
.assembly 'dtest-lib' { }
.class public auto ansi ExceptionFilterTest
extends [mscorlib]System.Object
{
.method public static void Main () cil managed
{
.entrypoint
call void class ExceptionFilterTest::Test ()
ret
}
.method public static int32 Filter ([mscorlib]System.Exception exc) cil managed noinlining
{
ldc.i4.1
ret
}
.method public static void Handler ([mscorlib]System.Exception exc) cil managed noinlining
{
ret
}
.method public static void Test () cil managed noinlining
{
.try {
newobj instance void class [mscorlib]System.InvalidOperationException::.ctor ()
throw
leave end
} filter {
call int32 class ExceptionFilterTest::Filter([mscorlib]System.Exception)
endfilter
} {
call void class ExceptionFilterTest::Handler([mscorlib]System.Exception)
leave end
}
end:
ret
}
}

File diff suppressed because it is too large Load Diff