[llvm] [ORC] Disable the ReOptimizeLayerTest on Windows. (PR #163930)
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 17 02:54:37 PDT 2025
https://github.com/lhames created https://github.com/llvm/llvm-project/pull/163930
This test has been failing for unclear reasons. ReOptimizeLayer on Windows isn't well supported yet, so just disable this for now.
https://github.com/llvm/llvm-project/issues/158270
>From 3dd654dae87fe6068c2f0324c9ca2a13f3ae2655 Mon Sep 17 00:00:00 2001
From: Lang Hames <lhames at gmail.com>
Date: Fri, 17 Oct 2025 20:51:36 +1100
Subject: [PATCH] [ORC] Disable the ReOptimizeLayerTest on Windows.
This test has been failing for unclear reasons. ReOptimizeLayer on Windows
isn't well supported yet, so just disable this for now.
https://github.com/llvm/llvm-project/issues/158270
---
llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
index f35a3783394c9..686d85dc6c15b 100644
--- a/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/ReOptimizeLayerTest.cpp
@@ -43,7 +43,7 @@ class ReOptimizeLayerTest : public testing::Test {
// COFF-ARM64 is not supported yet
auto Triple = JTMB->getTargetTriple();
- if (Triple.isOSBinFormatCOFF() && Triple.isAArch64())
+ if (Triple.isOSBinFormatCOFF())
GTEST_SKIP();
// SystemZ is not supported yet.
More information about the llvm-commits
mailing list