Skip to content

Commit 28695dd

Browse files
committed
[libc] Disable block test on NVPTX
Summary: We already disable the freelist, the block test also causes issues. We don't use this code at all on the GPU so we can disable this test for now.
1 parent ac0b281 commit 28695dd

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

libc/test/src/__support/CMakeLists.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
add_custom_target(libc-support-tests)
22

3-
add_libc_test(
4-
block_test
5-
SUITE
6-
libc-support-tests
7-
SRCS
8-
block_test.cpp
9-
DEPENDS
10-
libc.src.__support.CPP.array
11-
libc.src.__support.CPP.bit
12-
libc.src.__support.CPP.span
13-
libc.src.__support.block
14-
libc.src.string.memcpy
15-
)
16-
173
if(NOT LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
4+
add_libc_test(
5+
block_test
6+
SUITE
7+
libc-support-tests
8+
SRCS
9+
block_test.cpp
10+
DEPENDS
11+
libc.src.__support.CPP.array
12+
libc.src.__support.CPP.bit
13+
libc.src.__support.CPP.span
14+
libc.src.__support.block
15+
libc.src.string.memcpy
16+
)
17+
1818
add_libc_test(
1919
freelist_test
2020
SUITE

0 commit comments

Comments
 (0)