[llvm] beb7fb9 - [ORC] skip reoptimization tests on i386 (#114351)

via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 31 17:41:06 PDT 2024


Author: Tom Stellard
Date: 2024-10-31T17:41:02-07:00
New Revision: beb7fb9d0f25c6e86a437516d76c6d5deb0eb21f

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

LOG: [ORC] skip reoptimization tests on i386 (#114351)

This test currently segfaults on i386-unknown-linux-gnu builds.

Added: 
    

Modified: 
    llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
index db2b767607b972..2b6cd4984c8de1 100644
--- a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
@@ -47,6 +47,10 @@ class ReOptimizeLayerTest : public testing::Test {
     if (Triple.isSystemZ())
       GTEST_SKIP();
 
+    // 32-bit X86 is not supported yet.
+    if (Triple.isX86() && Triple.isArch32Bit())
+      GTEST_SKIP();
+
     if (Triple.isPPC())
       GTEST_SKIP();
 


        


More information about the llvm-commits mailing list