mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-14 00:56:25 +02:00
14 lines
544 B
Diff
14 lines
544 B
Diff
diff --git a/test/test-thread-priority.c b/test/test-thread-priority.c
|
|
index acc3385..a083f00 100644
|
|
--- a/test/test-thread-priority.c
|
|
+++ b/test/test-thread-priority.c
|
|
@@ -100,7 +100,7 @@ TEST_IMPL(thread_priority) {
|
|
uv_sem_destroy(&sem);
|
|
|
|
/* Now that the thread no longer exists, verify that the relevant error is returned */
|
|
-#if !defined(__ANDROID__)
|
|
+#if defined(__GLIBC__)
|
|
ASSERT_EQ(UV_ESRCH, uv_thread_getpriority(task_id, &priority));
|
|
ASSERT_EQ(UV_ESRCH, uv_thread_setpriority(task_id, UV_THREAD_PRIORITY_LOWEST));
|
|
#endif
|