You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Allow setting `Crossgen2OutputFormat` in tests - passed as `-f
<format>` to crossgen2
- Update generated test scripts to handle Mach-O output format for
crossgen2, linking the produced object into a dynamic library
- Enable `PlatformNativeR2R` test on macOS and set format to `macho`
Copy file name to clipboardExpand all lines: src/tests/Loader/PlatformNativeR2R/PlatformNativeR2R.cs
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -45,8 +45,7 @@ public static void EntryPoint()
45
45
}
46
46
47
47
Assert.True(output.Contains("READYTORUN_FLAG_Component"),"Component assembly should be associated with a platform-native composite image");
48
-
// TODO: Uncomment assert when crossgen2 adds support for the flag
49
-
// Assert.True(output.Contains("READYTORUN_FLAG_PlatformNativeImage"), "Component assembly should be associated with a platform-native composite image");
48
+
Assert.True(output.Contains("READYTORUN_FLAG_PlatformNativeImage"),"Component assembly should be associated with a platform-native composite image");
0 commit comments