Skip to content
Closed
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
3 changes: 1 addition & 2 deletions tests/xharness/Jenkins/TestVariationsFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ IEnumerable<TestData> GetTestData (RunTestTask test)
var x64_sim_runtime_identifier = string.Empty;
var supports_mono = test.Platform != TestPlatform.Mac;
var supports_coreclr = true;
var coreclr_works = Harness.CanRunArm64 || test.Platform == TestPlatform.Mac; // ignore tests on x64 until https://github.com/dotnet/runtime/issues/122563
var ignore_coreclr = coreclr_works ? ignore : true;
var ignore_coreclr = ignore;

switch (test.Platform) {
case TestPlatform.Mac:
Expand Down
Loading