Skip to content

Commit 291daf9

Browse files
committed
[xharness] Add missing flags for a few CoreCLR variations.
1 parent 6730ea8 commit 291daf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/xharness/Jenkins/TestVariationsFactory.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ IEnumerable<TestData> GetTestData (RunTestTask test)
7575
break;
7676
case "introspection":
7777
if (supports_coreclr && supports_mono) { // we only need specific coreclr test if we *also* support mono (otherwise the default test will be coreclr)
78-
yield return new TestData { Variation = "CoreCLR", TestVariation = "coreclr", Ignored = ignore_coreclr };
78+
yield return new TestData { Variation = "CoreCLR", TestVariation = "coreclr", Ignored = ignore_coreclr, Debug = true };
7979
}
8080
break;
8181
case "monotouch-test":
8282
if (supports_coreclr && supports_mono) { // we only need specific coreclr test if we *also* support mono (otherwise the default test will be coreclr)
83-
yield return new TestData { Variation = "Debug (CoreCLR)", TestVariation = "debug|coreclr", Ignored = ignore_coreclr };
84-
yield return new TestData { Variation = "Release (CoreCLR)", TestVariation = "release|coreclr", Ignored = ignore_coreclr };
83+
yield return new TestData { Variation = "Debug (CoreCLR)", TestVariation = "debug|coreclr", Ignored = ignore_coreclr, Debug = true };
84+
yield return new TestData { Variation = "Release (CoreCLR)", TestVariation = "release|coreclr", Ignored = ignore_coreclr, Debug = true };
8585
}
8686
break;
8787
}

0 commit comments

Comments
 (0)