[libc-commits] [libc] aee553e - [libc] Stop using LLVM's `stdout` in overlay mode tests

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Sat Jul 13 04:24:39 PDT 2024


Author: Joseph Huber
Date: 2024-07-13T06:24:31-05:00
New Revision: aee553e366d997c6d27e03d1ee4c7da153867424

URL: https://github.com/llvm/llvm-project/commit/aee553e366d997c6d27e03d1ee4c7da153867424
DIFF: https://github.com/llvm/llvm-project/commit/aee553e366d997c6d27e03d1ee4c7da153867424.diff

LOG: [libc] Stop using LLVM's `stdout` in overlay mode tests

Summary:
This causes errors when running unit tests when it tries to use an
invalid stdio handle.

Fixes https://github.com/llvm/llvm-project/issues/98711

Added: 
    

Modified: 
    libc/test/src/stdio/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/test/src/stdio/CMakeLists.txt b/libc/test/src/stdio/CMakeLists.txt
index a01deae5d93a1..5eb8c9577893b 100644
--- a/libc/test/src/stdio/CMakeLists.txt
+++ b/libc/test/src/stdio/CMakeLists.txt
@@ -189,7 +189,6 @@ add_libc_test(
     printf_test.cpp
   DEPENDS
     libc.src.stdio.printf
-    libc.src.stdio.stdout
 )
 
 add_fp_unittest(
@@ -235,7 +234,6 @@ add_libc_test(
     vprintf_test.cpp
   DEPENDS
     libc.src.stdio.vprintf
-    libc.src.stdio.stdout
 )
 
 


        


More information about the libc-commits mailing list