[Lldb-commits] [lldb] 455aff7 - Force system C++ stdlib in test that forces system clang.

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 12 16:48:25 PDT 2022


Author: Adrian Prantl
Date: 2022-09-12T16:47:46-07:00
New Revision: 455aff72ce45982ae94e88d8b5474411a520047d

URL: https://github.com/llvm/llvm-project/commit/455aff72ce45982ae94e88d8b5474411a520047d
DIFF: https://github.com/llvm/llvm-project/commit/455aff72ce45982ae94e88d8b5474411a520047d.diff

LOG: Force system C++ stdlib in test that forces system clang.

Unfortunately these options are still not upstream.

Added: 
    

Modified: 
    lldb/test/API/functionalities/data-formatter/poarray/TestPrintObjectArray.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/data-formatter/poarray/TestPrintObjectArray.py b/lldb/test/API/functionalities/data-formatter/poarray/TestPrintObjectArray.py
index 3f1190a9388c4..cdfee184c5741 100644
--- a/lldb/test/API/functionalities/data-formatter/poarray/TestPrintObjectArray.py
+++ b/lldb/test/API/functionalities/data-formatter/poarray/TestPrintObjectArray.py
@@ -24,6 +24,8 @@ def test_print_array_no_const(self):
         disable_constant_classes = {
             'CC':
             'xcrun clang',  # FIXME: Remove when flags are available upstream.
+            'USE_SYSTEM_STDLIB':
+            '1', # See above.
             'CFLAGS_EXTRAS':
             '-fno-constant-nsnumber-literals ' +
             '-fno-constant-nsarray-literals ' +


        


More information about the lldb-commits mailing list