Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ namespace b08046cs;
using System;
using System.Runtime.CompilerServices;
using System.Threading;
using TestLibrary;
using Xunit;

class ExternalClass
Expand All @@ -42,7 +43,7 @@ public class ExternalException : Exception
public static int Ignored { get; set; }

[OuterLoop]
[Fact]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsMultithreadingSupported))]
public static int TestEntryPoint()
{
ExitCode = 100;
Expand Down
3 changes: 2 additions & 1 deletion src/tests/JIT/Regression/CLR-x86-JIT/v2.1/b72218/b72218.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace b72218;

using System;
using System.Threading;
using TestLibrary;
using Xunit;

public class My
Expand All @@ -19,7 +20,7 @@ static void Worker()
}

[OuterLoop]
[Fact]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsMultithreadingSupported))]
public static void TestEntryPoint()
{

Expand Down
Loading