[PATCH] D101971: [AIX][Test][ORC] Skip unsupported ORC C API tests on AIX

Hubert Tong via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 6 09:37:07 PDT 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rGe2d774a3dbbb: [AIX][Test][ORC] Skip unsupported ORC C API tests on AIX (authored by hubert.reinterpretcast).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D101971

Files:
  llvm/unittests/ExecutionEngine/Orc/OrcCAPITest.cpp


Index: llvm/unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
===================================================================
--- llvm/unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
+++ llvm/unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
@@ -116,6 +116,9 @@
     // some may just be failing due to bugs in this testcase.
     if (Triple.startswith("armv7") || Triple.startswith("armv8l"))
       return false;
+    llvm::Triple T(Triple);
+    if (T.isOSAIX() && T.isPPC64())
+      return false;
     return true;
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D101971.343437.patch
Type: text/x-patch
Size: 520 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210506/75f088db/attachment.bin>


More information about the llvm-commits mailing list