[libc-commits] [PATCH] D150898: [libc] Disable newly added test from running on NVPTX

Joseph Huber via Phabricator via libc-commits libc-commits at lists.llvm.org
Thu May 18 12:05:46 PDT 2023


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3ac8b647c7dc: [libc] Disable newly added test from running on NVPTX (authored by jhuber6).

Changed prior to commit:
  https://reviews.llvm.org/D150898?vs=523494&id=523495#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D150898/new/

https://reviews.llvm.org/D150898

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


Index: libc/test/src/__support/CMakeLists.txt
===================================================================
--- libc/test/src/__support/CMakeLists.txt
+++ libc/test/src/__support/CMakeLists.txt
@@ -93,6 +93,8 @@
     libc.src.__support.fixedvector
 )
 
+# This test fails with a segmentation fault on NVPTX.
+if(NOT LIBC_GPU_TARGET_ARCHITECTURE_IS_NVPTX)
 add_libc_test(
   char_vector_test
   SUITE
@@ -102,6 +104,7 @@
   DEPENDS
     libc.src.__support.char_vector
 )
+endif()
 
 add_executable(
   libc_str_to_float_comparison_test


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D150898.523495.patch
Type: text/x-patch
Size: 541 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230518/0460d1aa/attachment.bin>


More information about the libc-commits mailing list