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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ILCompiler.Compiler/tests/DependencyGraphTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class DependencyGraphTests
public static IEnumerable<object[]> GetTestMethods()
{
var target = new TargetDetails(TargetArchitecture.X64, TargetOS.Windows, TargetAbi.CoreRT);
var context = new CompilerTypeSystemContext(target, SharedGenericsMode.CanonicalReferenceTypes, false);
var context = new CompilerTypeSystemContext(target, SharedGenericsMode.CanonicalReferenceTypes);

context.InputFilePaths = new Dictionary<string, string> {
{ "Test.CoreLib", @"Test.CoreLib.dll" },
Expand Down
2 changes: 1 addition & 1 deletion src/ILCompiler.Compiler/tests/DevirtualizationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class DevirtualizationTests
public DevirtualizationTests()
{
var target = new TargetDetails(TargetArchitecture.X64, TargetOS.Windows, TargetAbi.CoreRT);
_context = new CompilerTypeSystemContext(target, SharedGenericsMode.CanonicalReferenceTypes, false);
_context = new CompilerTypeSystemContext(target, SharedGenericsMode.CanonicalReferenceTypes);

_context.InputFilePaths = new Dictionary<string, string> {
{ "Test.CoreLib", @"Test.CoreLib.dll" },
Expand Down