llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Miro Bucko (mbucko) <details> <summary>Changes</summary> Summary: Test Plan: ninja check-lldb Reviewers: clayborg Subscribers: Tasks: Tags: --- Full diff: https://github.com/llvm/llvm-project/pull/93710.diff 15 Files Affected: - (modified) lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py (+2-2) - (modified) lldb/test/API/commands/expression/import-std-module/retry-with-std-module/TestRetryWithStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py (+1-1) - (modified) lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py (+1-1) - (modified) lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/shared_ptr/TestDataFormatterLibcxxSharedPtr.py (+1-1) - (modified) lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unique_ptr/TestDataFormatterLibcxxUniquePtr.py (+2-2) ``````````diff diff --git a/lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py index 9e2fc17fa10b4..4168570f38c70 100644 --- a/lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py @@ -20,7 +20,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): deque_type = "std::deque<int>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py index 24b1e00de67c7..cf11668290eee 100644 --- a/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py @@ -21,7 +21,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): deque_type = "std::deque<Foo>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py index 9b0ca8c49f003..1a146767cc1f8 100644 --- a/lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py @@ -20,7 +20,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): list_type = "std::forward_list<Foo>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py index 10dd8ee01081c..c7382220883a9 100644 --- a/lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py @@ -20,7 +20,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): list_type = "std::forward_list<int>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py index 31351a5cbdbaa..f0828b44fb8ea 100644 --- a/lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py @@ -23,7 +23,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): list_type = "std::list<Foo>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py index f29d9fdb5b2cf..f7138da8f1a67 100644 --- a/lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py @@ -20,7 +20,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): list_type = "std::list<int>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py b/lldb/test/API/commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py index b7e89d3f8a952..f97ebeed0df8b 100644 --- a/lldb/test/API/commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py +++ b/lldb/test/API/commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py @@ -31,7 +31,7 @@ def test(self): ] if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): vector_type = "std::vector<int>" dbg_vec_type = "std::vector<DbgInfoClass>" diff --git a/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py index b08a53855e1db..060ea684c33f4 100644 --- a/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/queue/TestQueueFromStdModule.py @@ -25,7 +25,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): queue_type = "std::queue<C>" else: @@ -54,7 +54,7 @@ def test(self): # Test std::queue functionality with a std::list. if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): queue_type = "std::queue<C, std::list<C> >" else: diff --git a/lldb/test/API/commands/expression/import-std-module/retry-with-std-module/TestRetryWithStdModule.py b/lldb/test/API/commands/expression/import-std-module/retry-with-std-module/TestRetryWithStdModule.py index aa8646b4cfb73..b1c3b11ee4a7a 100644 --- a/lldb/test/API/commands/expression/import-std-module/retry-with-std-module/TestRetryWithStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/retry-with-std-module/TestRetryWithStdModule.py @@ -14,7 +14,7 @@ def test(self): ) if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): vec_type = "std::vector<int>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py b/lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py index e21a4cc5a565b..7aa267acd7eb1 100644 --- a/lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py +++ b/lldb/test/API/commands/expression/import-std-module/unique_ptr-dbg-info-content/TestUniquePtrDbgInfoContent.py @@ -22,7 +22,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): ptr_type = "std::unique_ptr<Foo>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py index 2952b2e4f0727..f2841fd61de10 100644 --- a/lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/unique_ptr/TestUniquePtrFromStdModule.py @@ -22,7 +22,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): ptr_type = "std::unique_ptr<int>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py index 397ac6a14cca8..ca49f96e323a3 100644 --- a/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py @@ -23,7 +23,7 @@ def test(self): self.runCmd("settings set target.import-std-module true") if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): vector_type = "std::vector<Foo>" else: diff --git a/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py index a1f33271f39d2..84ecc9438bf04 100644 --- a/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py @@ -18,7 +18,7 @@ def test(self): ) if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): vector_type = "std::vector<int>" vector_of_vector_type = "std::vector<std::vector<int> >" diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/shared_ptr/TestDataFormatterLibcxxSharedPtr.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/shared_ptr/TestDataFormatterLibcxxSharedPtr.py index 23011c951e213..98a91d4814f8d 100644 --- a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/shared_ptr/TestDataFormatterLibcxxSharedPtr.py +++ b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/shared_ptr/TestDataFormatterLibcxxSharedPtr.py @@ -58,7 +58,7 @@ def test_shared_ptr_variables(self): self.assertNotEqual(valobj.child[0].unsigned, 0) if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): string_type = "std::string" else: diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unique_ptr/TestDataFormatterLibcxxUniquePtr.py b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unique_ptr/TestDataFormatterLibcxxUniquePtr.py index 6a726e0253482..2c331a29223b3 100644 --- a/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unique_ptr/TestDataFormatterLibcxxUniquePtr.py +++ b/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unique_ptr/TestDataFormatterLibcxxUniquePtr.py @@ -15,7 +15,7 @@ def make_expected_type(self, pointee_type: str, qualifiers: str = "") -> str: qualifiers = " " + qualifiers if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): return f"std::unique_ptr<{pointee_type}>{qualifiers}" else: @@ -23,7 +23,7 @@ def make_expected_type(self, pointee_type: str, qualifiers: str = "") -> str: def make_expected_basic_string_ptr(self) -> str: if self.expectedCompiler(["clang"]) and self.expectedCompilerVersion( - [">", "16.0"] + [">", "14.0"] ): return f"std::unique_ptr<std::string>" else: `````````` </details> https://github.com/llvm/llvm-project/pull/93710 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits