fdeazeve updated this revision to Diff 470146. fdeazeve added a comment. Herald added a subscriber: JDevlieghere.
Edit commit message Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D136600/new/ https://reviews.llvm.org/D136600 Files: lldb/test/API/lang/objc/objc_direct-methods/Makefile lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py Index: lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py =================================================================== --- lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py +++ lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py @@ -1,4 +1,6 @@ from lldbsuite.test import lldbinline +from lldbsuite.test import decorators +decor = [decorators.skipIf(compiler="clang", compiler_version=['<', '13.0'])] lldbinline.MakeInlineTest( - __file__, globals(), []) + __file__, globals(), decor) Index: lldb/test/API/lang/objc/objc_direct-methods/Makefile =================================================================== --- lldb/test/API/lang/objc/objc_direct-methods/Makefile +++ lldb/test/API/lang/objc/objc_direct-methods/Makefile @@ -1,4 +1,5 @@ OBJC_SOURCES := main.m LD_EXTRAS := -lobjc -framework Foundation +USE_SYSTEM_STDLIB := 1 include Makefile.rules
Index: lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py =================================================================== --- lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py +++ lldb/test/API/lang/objc/objc_direct-methods/TestObjCDirectMethods.py @@ -1,4 +1,6 @@ from lldbsuite.test import lldbinline +from lldbsuite.test import decorators +decor = [decorators.skipIf(compiler="clang", compiler_version=['<', '13.0'])] lldbinline.MakeInlineTest( - __file__, globals(), []) + __file__, globals(), decor) Index: lldb/test/API/lang/objc/objc_direct-methods/Makefile =================================================================== --- lldb/test/API/lang/objc/objc_direct-methods/Makefile +++ lldb/test/API/lang/objc/objc_direct-methods/Makefile @@ -1,4 +1,5 @@ OBJC_SOURCES := main.m LD_EXTRAS := -lobjc -framework Foundation +USE_SYSTEM_STDLIB := 1 include Makefile.rules
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits