Author: Steven Wan Date: 2021-11-11T14:10:42-05:00 New Revision: 42102bce98e527f994a7bc68b2255d9e0462f6eb
URL: https://github.com/llvm/llvm-project/commit/42102bce98e527f994a7bc68b2255d9e0462f6eb DIFF: https://github.com/llvm/llvm-project/commit/42102bce98e527f994a7bc68b2255d9e0462f6eb.diff LOG: [AIX][NFC] Disable clang-repl tests failing due to lack of 64-bit XCOFF support. The following interpreter tests failed on AIX because 64-bit XCOFF object files are currently not supported on AIX. This patch disables the tests on AIX for the time being. Reviewed By: Jake-Egan Differential Revision: https://reviews.llvm.org/D113614 Added: Modified: clang/unittests/Interpreter/InterpreterTest.cpp Removed: ################################################################################ diff --git a/clang/unittests/Interpreter/InterpreterTest.cpp b/clang/unittests/Interpreter/InterpreterTest.cpp index 0f02935b533b4..742aa49763577 100644 --- a/clang/unittests/Interpreter/InterpreterTest.cpp +++ b/clang/unittests/Interpreter/InterpreterTest.cpp @@ -145,7 +145,11 @@ struct LLVMInitRAII { ~LLVMInitRAII() { llvm::llvm_shutdown(); } } LLVMInit; +#ifdef _AIX +TEST(IncrementalProcessing, DISABLED_FindMangledNameSymbol) { +#else TEST(IncrementalProcessing, FindMangledNameSymbol) { +#endif std::unique_ptr<Interpreter> Interp = createInterpreter(); @@ -201,7 +205,11 @@ static NamedDecl *LookupSingleName(Interpreter &Interp, const char *Name) { return R.getFoundDecl(); } +#ifdef _AIX +TEST(IncrementalProcessing, DISABLED_InstantiateTemplate) { +#else TEST(IncrementalProcessing, InstantiateTemplate) { +#endif // FIXME: We cannot yet handle delayed template parsing. If we run with // -fdelayed-template-parsing we try adding the newly created decl to the // active PTU which causes an assert. _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits