File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/tests/baseservices/threading/regressions/115178 Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ as a result of internal interrupt handling.
16
16
17
17
public class Test_wait_interrupted_user_apc
18
18
{
19
- public static bool Run115178Test => TestLibrary . Utilities . IsWindows ;
20
-
21
19
[ DllImport ( "kernel32.dll" ) ]
22
20
private static extern IntPtr GetCurrentProcess ( ) ;
23
21
@@ -285,7 +283,8 @@ private static void RunTestInterruptInfiniteWait()
285
283
GC . KeepAlive ( callback ) ;
286
284
}
287
285
288
- [ ConditionalFact ( nameof ( Run115178Test ) ) ]
286
+ [ ConditionalFact ( typeof ( TestLibrary . Utilities ) , nameof ( TestLibrary . Utilities . IsWindows ) ) ]
287
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/118233" , typeof ( TestLibrary . Utilities ) , nameof ( TestLibrary . Utilities . IsNativeAot ) ) ]
289
288
public static int TestEntryPoint ( )
290
289
{
291
290
RunTestUsingInfiniteWait ( ) ;
You can’t perform that action at this time.
0 commit comments