Skip to content

Commit 4f905a8

Browse files
authored
Merge JIT/Regression tests into merged wrapper assemblies (#121078)
1 parent ddd250e commit 4f905a8

File tree

2,178 files changed

+5209
-11845
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,178 files changed

+5209
-11845
lines changed

src/tests/Common/CoreCLRTestLibrary/PlatformDetection.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public static bool IsNonZeroLowerBoundArraySupported
5151

5252
public static bool IsNonZeroLowerBoundArrayNotSupported => !IsNonZeroLowerBoundArraySupported;
5353

54+
public static bool IsTypeEquivalenceSupported => IsWindows && !Utilities.IsNativeAot && !Utilities.IsMonoRuntime;
5455
public static bool IsVarArgSupported => IsWindows && !Utilities.IsNativeAot && !Utilities.IsMonoRuntime && !Utilities.IsCoreClrInterpreter;
5556

5657
public static bool IsExceptionInteropSupported => IsWindows && !Utilities.IsNativeAot && !Utilities.IsMonoRuntime && !Utilities.IsCoreClrInterpreter;

src/tests/Common/XUnitWrapperGenerator/XUnitWrapperGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ private static ImmutableArray<ITestInfo> DecorateWithSkipOnCoreClrConfiguration(
933933
}
934934
if (skippedTestModes.HasFlag(Xunit.RuntimeTestModes.TailcallStress))
935935
{
936-
conditions.Add($"!{ConditionClass}.IsTailcallStress");
936+
conditions.Add($"!{ConditionClass}.IsTailCallStress");
937937
}
938938
if (skippedTestModes.HasFlag(Xunit.RuntimeTestModes.TieredCompilation))
939939
{

src/tests/JIT/Regression/CLR-x86-EJIT/V1-M09.5-PDC/b12008/b12008.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
//
44

5+
6+
namespace b12008;
7+
58
using System;
69
using Xunit;
710

@@ -20,6 +23,7 @@ internal void run()
2023
Func(ref str[0]);
2124
}
2225

26+
[OuterLoop]
2327
[Fact]
2428
public static void TestEntryPoint()
2529
{

src/tests/JIT/Regression/CLR-x86-EJIT/V1-M09.5-PDC/b12008/b12008.csproj

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/tests/JIT/Regression/CLR-x86-EJIT/V1-M09.5-PDC/b14426/b14426.csproj

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/tests/JIT/Regression/CLR-x86-EJIT/V1-M11-Beta1/b40089/b40089.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
using Xunit;
6-
namespace Test
6+
namespace b40089
77
{
88
using System;
99

@@ -14,6 +14,7 @@ public BB Method1(float param2)
1414
return new BB();
1515
}
1616

17+
[OuterLoop]
1718
[Fact]
1819
public static void TestEntryPoint()
1920
{

src/tests/JIT/Regression/CLR-x86-EJIT/V1-M11-Beta1/b40089/b40089.csproj

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/tests/JIT/Regression/CLR-x86-EJIT/V1-M11-Beta1/b40138/b40138.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
using Xunit;
6-
namespace Test
6+
namespace b40138
77
{
88
using System;
99

@@ -16,6 +16,7 @@ BB Method3(float param2, ulong[] param3)
1616

1717
static bool Static1(float[] param1) { return false; }
1818

19+
[OuterLoop]
1920
[Fact]
2021
public static int TestEntryPoint()
2122
{

src/tests/JIT/Regression/CLR-x86-EJIT/V1-M11-Beta1/b40138/b40138.csproj

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/tests/JIT/Regression/CLR-x86-EJIT/V1-M11-Beta1/b45679/b45679.csproj

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)