Skip to content

Commit

Permalink
[AIX][ClangRepl] Disable new test on AIX
Browse files Browse the repository at this point in the history
This new test fails on the AIX bot with error `LLVM ERROR: Incompatible object format!`. Disable for now to investigate.

Same as 86337be.
  • Loading branch information
jakeegan committed Mar 13, 2024
1 parent 83d1788 commit 960b4aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions clang/unittests/Interpreter/InterpreterExtensionsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ class TestCreateResetExecutor : public Interpreter {
void resetExecutor() { Interpreter::ResetExecutor(); }
};

ifdef _AIX
TEST(InterpreterExtensionsTest, DISABLED_ExecutorCreateReset) {
#else
TEST(InterpreterExtensionsTest, ExecutorCreateReset) {
#endif
// Make sure we can create the executer on the platform.
if (!HostSupportsJit())
GTEST_SKIP();
Expand Down

0 comments on commit 960b4aa

Please sign in to comment.