File tree Expand file tree Collapse file tree 4 files changed +6
-14
lines changed
src/tests/Loader/binding/tracing Expand file tree Collapse file tree 4 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
- <PropertyGroup >
3
- <!-- TestAssemblyLoadContext.Load called from the finalizer -->
4
- <UnloadabilityIncompatible >true</UnloadabilityIncompatible >
5
- <!-- Dynamic assembly loads -->
6
- <NativeAotIncompatible >true</NativeAotIncompatible >
7
- </PropertyGroup >
8
2
<ItemGroup >
9
3
<Compile Include =" BinderTracingTest.Basic.cs" />
10
4
<Compile Include =" BinderTracingTest.DefaultProbing.cs" />
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <!-- Test creates non-collectible AssemblyLoadContext -->
4
- <UnloadabilityIncompatible >true</UnloadabilityIncompatible >
5
- <!-- Dynamic assembly loads -->
6
- <NativeAotIncompatible >true</NativeAotIncompatible >
7
- <RequiresProcessIsolation >true</RequiresProcessIsolation >
8
3
<IlasmRoundTripIncompatible >true</IlasmRoundTripIncompatible >
9
4
</PropertyGroup >
10
5
<ItemGroup >
Original file line number Diff line number Diff line change @@ -85,9 +85,6 @@ public static bool RunAllTests()
85
85
foreach ( var method in methods )
86
86
{
87
87
BinderTestAttribute attribute = method . GetCustomAttribute < BinderTestAttribute > ( ) ;
88
- if ( attribute . Isolate && Environment . GetEnvironmentVariable ( "DOTNET_GCStress" ) != null )
89
- continue ;
90
-
91
88
bool success = attribute . Isolate
92
89
? RunTestInSeparateProcess ( method )
93
90
: RunSingleTest ( method ) ;
Original file line number Diff line number Diff line change 4
4
<!-- Requires explicit Main as it implements command-line parameters for local testing purposes. -->
5
5
<RequiresProcessIsolation >true</RequiresProcessIsolation >
6
6
<ReferenceXUnitWrapperGenerator >false</ReferenceXUnitWrapperGenerator >
7
+ <!-- Test creates non-collectible AssemblyLoadContext -->
8
+ <UnloadabilityIncompatible >true</UnloadabilityIncompatible >
9
+ <!-- Dynamic assembly loads -->
10
+ <NativeAotIncompatible >true</NativeAotIncompatible >
11
+ <!-- Tracing tests routinely time out with gcstress -->
12
+ <GCStressIncompatible >true</GCStressIncompatible >
7
13
</PropertyGroup >
8
14
<ItemGroup >
9
15
<Compile Include =" BinderTracingTest.cs" />
You can’t perform that action at this time.
0 commit comments