Skip to content

Commit 5490774

Browse files
davmasonhoyosjs
andauthored
Disable gcstress and jitstress for tracing tests (#85186)
* Disable gcstress and jitstress * Fix EventListenerThreadPool proj --------- Co-authored-by: Juan Hoyos <19413848+hoyosjs@users.noreply.github.com>
1 parent 9a693e0 commit 5490774

33 files changed

+63
-35
lines changed

src/tests/tracing/eventactivityidcontrol/eventactivityidcontrol.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
6+
<GCStressIncompatible>true</GCStressIncompatible>
7+
<JitOptimizationSensitive>true</JitOptimizationSensitive>
58
</PropertyGroup>
69
<ItemGroup>
710
<Compile Include="EventActivityIdControl.cs" />

src/tests/tracing/eventcounter/eventcounter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
56
<GCStressIncompatible>true</GCStressIncompatible>
6-
<!-- This test is timing sensitive and JIT timing affects the results of the test -->
77
<JitOptimizationSensitive>true</JitOptimizationSensitive>
88
<!-- This test has a secondary thread with an infinite loop -->
99
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>

src/tests/tracing/eventcounter/gh53564.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
56
<GCStressIncompatible>true</GCStressIncompatible>
6-
<!-- This test is timing sensitive and JIT timing affects the results of the test -->
77
<JitOptimizationSensitive>true</JitOptimizationSensitive>
88
<!-- This test has a secondary thread with an infinite loop -->
99
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>

src/tests/tracing/eventcounter/incrementingeventcounter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
56
<GCStressIncompatible>true</GCStressIncompatible>
6-
<!-- This test is timing sensitive and JIT timing affects the results of the test -->
77
<JitOptimizationSensitive>true</JitOptimizationSensitive>
88
<!-- This test has a secondary thread with an infinite loop -->
99
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>

src/tests/tracing/eventcounter/incrementingpollingcounter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
56
<GCStressIncompatible>true</GCStressIncompatible>
6-
<!-- This test is timing sensitive and JIT timing affects the results of the test -->
77
<JitOptimizationSensitive>true</JitOptimizationSensitive>
88
<!-- This test has a secondary thread with an infinite loop -->
99
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>

src/tests/tracing/eventcounter/pollingcounter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
56
<GCStressIncompatible>true</GCStressIncompatible>
6-
<!-- This test is timing sensitive and JIT timing affects the results of the test -->
77
<JitOptimizationSensitive>true</JitOptimizationSensitive>
88
<!-- This test has a secondary thread with an infinite loop -->
99
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>

src/tests/tracing/eventcounter/regression-25709.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
56
<GCStressIncompatible>true</GCStressIncompatible>
6-
<!-- This test is timing sensitive and JIT timing affects the results of the test -->
77
<JitOptimizationSensitive>true</JitOptimizationSensitive>
88
<!-- This test has a secondary thread with an infinite loop -->
99
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>

src/tests/tracing/eventcounter/regression-46938.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
56
<GCStressIncompatible>true</GCStressIncompatible>
6-
<!-- This test is timing sensitive and JIT timing affects the results of the test -->
77
<JitOptimizationSensitive>true</JitOptimizationSensitive>
88
<!-- This test has a secondary thread with an infinite loop -->
99
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>

src/tests/tracing/eventcounter/runtimecounters.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
56
<GCStressIncompatible>true</GCStressIncompatible>
6-
<!-- This test is timing sensitive and JIT timing affects the results of the test -->
77
<JitOptimizationSensitive>true</JitOptimizationSensitive>
88
<!-- This test has a secondary thread with an infinite loop -->
99
<UnloadabilityIncompatible>true</UnloadabilityIncompatible>

src/tests/tracing/eventlistener/EventListenerThreadPool.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
<OutputType>Exe</OutputType>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
55
<DisableProjectBuild Condition="'$(RuntimeFlavor)' == 'mono'">true</DisableProjectBuild>
6+
<!-- Tracing tests routinely time out with jitstress and gcstress -->
7+
<GCStressIncompatible>true</GCStressIncompatible>
8+
<JitOptimizationSensitive>true</JitOptimizationSensitive>
69
</PropertyGroup>
710
<ItemGroup>
811
<Compile Include="EventListenerThreadPool.cs" />

0 commit comments

Comments
 (0)