X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/0a7de7458d150b5d4dffc935ba399be265ef0a1a..a991bd8d3e7fe02dbca0644054bab73c5b75324a:/tests/workq_sigprof.c diff --git a/tests/workq_sigprof.c b/tests/workq_sigprof.c index 458307962..f6cdf3444 100644 --- a/tests/workq_sigprof.c +++ b/tests/workq_sigprof.c @@ -10,7 +10,9 @@ #include -#if !TARGET_OS_IPHONE +#if !defined(__arm__) + +T_GLOBAL_META(T_META_RUN_CONCURRENTLY(true)); static pthread_t workq_thread; static bool signal_received; @@ -64,12 +66,12 @@ T_DECL(workq_sigprof, "test that workqueue threads can receive sigprof") dispatch_main(); } -#else //!TARGET_OS_IPHONE +#else //!defined(__arm__) T_DECL(workq_sigprof, "test that workqueue threads can receive sigprof") { T_EXPECTFAIL; - T_FAIL(" setitimer/sigprof doesn't seem to be delivered on embeded platforms"); + T_FAIL(" setitimer/sigprof not supported on 32bit arm platforms"); } -#endif //!TARGET_OS_IPHONE +#endif //!defined(__arm__)