[libc-commits] [libc] c284326 - [libc] Disable block test on AMDGPU as well

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Tue Nov 12 10:39:32 PST 2024


Author: Joseph Huber
Date: 2024-11-12T12:39:13-06:00
New Revision: c284326755b446c811d2bf0ee5f461b493ebf920

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

LOG: [libc] Disable block test on AMDGPU as well

Summary:
Recently started failing on AMDGPU as well, will disable until I can
bisect it.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/libc/test/src/__support/CMakeLists.txt b/libc/test/src/__support/CMakeLists.txt
index 7ad262d5f1f300..dc66bc5c71dd67 100644
--- a/libc/test/src/__support/CMakeLists.txt
+++ b/libc/test/src/__support/CMakeLists.txt
@@ -1,6 +1,6 @@
 add_custom_target(libc-support-tests)
 
-if(NOT LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
+if(NOT LIBC_TARGET_OS_IS_GPU)
   add_libc_test(
     block_test
     SUITE


        


More information about the libc-commits mailing list