diff options
Diffstat (limited to 'clang/unittests/Interpreter/InterpreterTest.cpp')
-rw-r--r-- | clang/unittests/Interpreter/InterpreterTest.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/unittests/Interpreter/InterpreterTest.cpp b/clang/unittests/Interpreter/InterpreterTest.cpp index 0f02935..742aa49 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. |