File tree Expand file tree Collapse file tree 1 file changed +17
-15
lines changed
libc/test/integration/src/stdio Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -6,20 +6,23 @@ add_dependencies(libc-integration-tests stdio-integration-tests)
6
6
7
7
# These tests are not for correctness testing, but are instead a convenient way
8
8
# to generate hermetic binaries for comparitive binary size testing.
9
- add_integration_test (
10
- sprintf_size_test
11
- SUITE
12
- stdio-integration-tests
13
- SRCS
14
- sprintf_size_test.cpp
15
- DEPENDS
16
- libc.src.stdio.sprintf
17
- ARGS
18
- "%s %c %d"
19
- "First arg"
20
- "a"
21
- "0"
22
- )
9
+ # FIXME: This test fails on AMDGPU so we disable it temporarily.
10
+ if (NOT LIBC_TARGET_ARCHITECTURE_IS_AMDGPU )
11
+ add_integration_test (
12
+ sprintf_size_test
13
+ SUITE
14
+ stdio-integration-tests
15
+ SRCS
16
+ sprintf_size_test.cpp
17
+ DEPENDS
18
+ libc.src.stdio.sprintf
19
+ ARGS
20
+ "%s %c %d"
21
+ "First arg"
22
+ "a"
23
+ "0"
24
+ )
25
+ endif ()
23
26
24
27
add_integration_test (
25
28
sprintf_size_test_no_sprintf
@@ -35,4 +38,3 @@ add_integration_test(
35
38
COMPILE_OPTIONS
36
39
-DINTEGRATION_DISABLE_PRINTF
37
40
)
38
-
You can’t perform that action at this time.
0 commit comments