We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c706338 commit 8c8f854Copy full SHA for 8c8f854
libc/test/src/sys/prctl/linux/CMakeLists.txt
@@ -1,5 +1,10 @@
1
add_custom_target(libc_sys_prctl_unittests)
2
3
+# Temporarily disable this test while setting up arm and riscv buildbots
4
+# using qemu, since PR_GET_THP_DISABLE is not supported on qemu.
5
+if (NOT (LIBC_TARGET_ARCHITECTURE_IS_ARM OR
6
+ LIBC_TARGET_ARCHITECTURE_IS_RISCV32 OR
7
+ LIBC_TARGET_ARCHITECTURE_IS_RISCV64))
8
add_libc_unittest(
9
prctl_test
10
SUITE
@@ -13,3 +18,4 @@ add_libc_unittest(
13
18
libc.test.UnitTest.ErrnoCheckingTest
14
19
libc.test.UnitTest.ErrnoSetterMatcher
15
20
)
21
+endif()
0 commit comments