Skip to content

Commit 574ab7e

Browse files
[libc] Disable varargs tests on gpu, nvptx can't build them yet
1 parent 4559d83 commit 574ab7e

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

libc/config/gpu/entrypoints.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,6 @@ set(TARGET_LIBC_ENTRYPOINTS
181181
libc.src.stdio.fflush
182182
libc.src.stdio.ftell
183183
libc.src.stdio.clearerr
184-
libc.src.stdio.sprintf
185-
libc.src.stdio.snprintf
186-
libc.src.stdio.vsprintf
187-
libc.src.stdio.vsnprintf
188184
libc.src.stdio.puts
189185
libc.src.stdio.fopen
190186
libc.src.stdio.fclose

libc/test/src/__support/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ add_libc_test(
8686
libc.src.__support.uint128
8787
)
8888

89-
# NVPTX does not support varargs currently.
90-
if(NOT LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
89+
# The GPU does not support varargs currently.
90+
if(NOT LIBC_TARGET_OS_IS_GPU)
9191
add_libc_test(
9292
arg_list_test
9393
SUITE

0 commit comments

Comments
 (0)