Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 10 additions & 10 deletions src/tests/JIT/Methodical/eh/basics/emptyfinally.il
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.ver 4:0:0:0
}
.assembly extern mscorlib {}
.assembly extern common {}
.assembly extern eh_common {}
.assembly 'emptyfinally' {}
.assembly extern xunit.core {}

Expand All @@ -18,7 +18,7 @@
.class private auto ansi beforefieldinit Class1
extends [mscorlib]System.Object
{
.field private static class [common]TestUtil.TestLog testLog
.field private static class [eh_common]TestUtil.TestLog testLog
.method private hidebysig specialname rtspecialname static void .cctor() cil managed
{
.maxstack 2
Expand All @@ -32,8 +32,8 @@
ldstr "Done"
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldloc.s expectedOut
newobj instance void [common]TestUtil.TestLog::.ctor(object)
stsfld class [common]TestUtil.TestLog hello.Class1::testLog
newobj instance void [eh_common]TestUtil.TestLog::.ctor(object)
stsfld class [eh_common]TestUtil.TestLog hello.Class1::testLog
ret
}

Expand All @@ -56,8 +56,8 @@
.entrypoint
.maxstack 1

ldsfld class [common]TestUtil.TestLog hello.Class1::testLog
callvirt instance void [common]TestUtil.TestLog::StartRecording()
ldsfld class [eh_common]TestUtil.TestLog hello.Class1::testLog
callvirt instance void [eh_common]TestUtil.TestLog::StartRecording()

.try
{
Expand All @@ -71,11 +71,11 @@
ldstr "Done"
call void [System.Console]System.Console::WriteLine(string)

ldsfld class [common]TestUtil.TestLog hello.Class1::testLog
callvirt instance void [common]TestUtil.TestLog::StopRecording()
ldsfld class [eh_common]TestUtil.TestLog hello.Class1::testLog
callvirt instance void [eh_common]TestUtil.TestLog::StopRecording()

ldsfld class [common]TestUtil.TestLog hello.Class1::testLog
callvirt instance int32 [common]TestUtil.TestLog::VerifyOutput()
ldsfld class [eh_common]TestUtil.TestLog hello.Class1::testLog
callvirt instance int32 [eh_common]TestUtil.TestLog::VerifyOutput()

ret
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<Compile Include="emptyfinally.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="emptyfinally.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/multihandler_d.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="multihandler.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/multihandler_do.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="multihandler.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/multihandler_r.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="multihandler.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/multihandler_ro.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="multihandler.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/throwincatch_d.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<Compile Include="throwincatch.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/throwincatch_do.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<Compile Include="throwincatch.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/throwincatch_r.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<Compile Include="throwincatch.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/throwincatch_ro.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<Compile Include="throwincatch.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="throwinclassconstructor.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="throwinclassconstructor.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="throwinclassconstructor.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="throwinclassconstructor.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
12 changes: 6 additions & 6 deletions src/tests/JIT/Methodical/eh/basics/throwinexcept.il
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.ver 4:0:0:0
}
.assembly extern mscorlib {}
.assembly extern common {}
.assembly extern eh_common {}
.assembly test {}
.module test.exe

Expand All @@ -18,7 +18,7 @@
.maxstack 2
.locals init (
class [mscorlib]System.IO.StringWriter expectedOut,
class [common]TestUtil.TestLog testLog
class [eh_common]TestUtil.TestLog testLog
)

newobj instance void [mscorlib]System.IO.StringWriter::.ctor()
Expand All @@ -39,11 +39,11 @@
ldstr "Done"
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldloc.s expectedOut
newobj instance void [common]TestUtil.TestLog::.ctor(object)
newobj instance void [eh_common]TestUtil.TestLog::.ctor(object)
stloc.s testLog

ldloc.s testLog
callvirt instance void [common]TestUtil.TestLog::StartRecording()
callvirt instance void [eh_common]TestUtil.TestLog::StartRecording()

.try {
try_start:
Expand Down Expand Up @@ -78,10 +78,10 @@ done2:
call void [System.Console]System.Console::WriteLine(string)

ldloc.s testLog
callvirt instance void [common]TestUtil.TestLog::StopRecording()
callvirt instance void [eh_common]TestUtil.TestLog::StopRecording()

ldloc.s testLog
callvirt instance int32 [common]TestUtil.TestLog::VerifyOutput()
callvirt instance int32 [eh_common]TestUtil.TestLog::VerifyOutput()

ret
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<Compile Include="throwinexcept.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<Compile Include="throwinexcept.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
12 changes: 6 additions & 6 deletions src/tests/JIT/Methodical/eh/basics/throwinfault.il
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.ver 4:0:0:0
}
.assembly extern mscorlib {}
.assembly extern common {}
.assembly extern eh_common {}
.assembly test {}
.module test.exe

Expand All @@ -18,7 +18,7 @@
.maxstack 2
.locals init (
class [mscorlib]System.IO.StringWriter expectedOut,
class [common]TestUtil.TestLog testLog
class [eh_common]TestUtil.TestLog testLog
)

newobj instance void [mscorlib]System.IO.StringWriter::.ctor()
Expand All @@ -36,11 +36,11 @@
ldstr "In catch"
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldloc.s expectedOut
newobj instance void [common]TestUtil.TestLog::.ctor(object)
newobj instance void [eh_common]TestUtil.TestLog::.ctor(object)
stloc.s testLog

ldloc.s testLog
callvirt instance void [common]TestUtil.TestLog::StartRecording()
callvirt instance void [eh_common]TestUtil.TestLog::StartRecording()

.try {
ldstr "In try - catch"
Expand Down Expand Up @@ -72,10 +72,10 @@
done:

ldloc.s testLog
callvirt instance void [common]TestUtil.TestLog::StopRecording()
callvirt instance void [eh_common]TestUtil.TestLog::StopRecording()

ldloc.s testLog
callvirt instance int32 [common]TestUtil.TestLog::VerifyOutput()
callvirt instance int32 [eh_common]TestUtil.TestLog::VerifyOutput()

ret
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<Compile Include="throwinfault.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<Compile Include="throwinfault.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
12 changes: 6 additions & 6 deletions src/tests/JIT/Methodical/eh/basics/throwinfilter.il
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.ver 4:0:0:0
}
.assembly extern mscorlib {}
.assembly extern common {}
.assembly extern eh_common {}
.assembly test {}
.module test.exe

Expand All @@ -18,7 +18,7 @@
.maxstack 2
.locals init (
class [mscorlib]System.IO.StringWriter expectedOut,
class [common]TestUtil.TestLog testLog
class [eh_common]TestUtil.TestLog testLog
)

newobj instance void [mscorlib]System.IO.StringWriter::.ctor()
Expand All @@ -36,11 +36,11 @@
ldstr "Done"
callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string)
ldloc.s expectedOut
newobj instance void [common]TestUtil.TestLog::.ctor(object)
newobj instance void [eh_common]TestUtil.TestLog::.ctor(object)
stloc.s testLog

ldloc.s testLog
callvirt instance void [common]TestUtil.TestLog::StartRecording()
callvirt instance void [eh_common]TestUtil.TestLog::StartRecording()

.try {
try_start:
Expand Down Expand Up @@ -75,10 +75,10 @@ done2:
call void [System.Console]System.Console::WriteLine(string)

ldloc.s testLog
callvirt instance void [common]TestUtil.TestLog::StopRecording()
callvirt instance void [eh_common]TestUtil.TestLog::StopRecording()

ldloc.s testLog
callvirt instance int32 [common]TestUtil.TestLog::VerifyOutput()
callvirt instance int32 [eh_common]TestUtil.TestLog::VerifyOutput()

ret
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<Compile Include="throwinfilter.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<Compile Include="throwinfilter.il" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/throwinfinally_d.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="throwinfinally.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="throwinfinally.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/eh/basics/throwinfinally_r.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="throwinfinally.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<Compile Include="throwinfinally.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<Compile Include="throwinfinallyerrpath.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
<Compile Include="throwinfinallyerrpath.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\common\common.csproj" />
<ProjectReference Include="..\..\..\common\eh_common.csproj" />
</ItemGroup>
</Project>
Loading