[Lldb-commits] [lldb] [lldb-dap] Disable TestDAP_optimized under ASAN (PR #111063)

via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 3 13:50:44 PDT 2024


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {darker}-->


:warning: Python code formatter, darker found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
darker --check --diff -r 000e790be35b77a01872851646d54432a203542c...9f64a452745b070b610e583436f074b3f9a24f4f lldb/test/API/tools/lldb-dap/optimized/TestDAP_optimized.py
``````````

</details>

<details>
<summary>
View the diff from darker here.
</summary>

``````````diff
--- TestDAP_optimized.py	2024-10-03 20:45:49.000000 +0000
+++ TestDAP_optimized.py	2024-10-03 20:50:17.743555 +0000
@@ -26,11 +26,11 @@
         leaf_frame = self.dap_server.get_stackFrame(frameIndex=0)
         self.assertTrue(leaf_frame["name"].endswith(" [opt]"))
         parent_frame = self.dap_server.get_stackFrame(frameIndex=1)
         self.assertTrue(parent_frame["name"].endswith(" [opt]"))
 
-    @skipIfAsan # On ASAN builds this test intermittently fails https://github.com/llvm/llvm-project/issues/111061
+    @skipIfAsan  # On ASAN builds this test intermittently fails https://github.com/llvm/llvm-project/issues/111061
     @skipIfWindows
     def test_optimized_variable(self):
         """Test optimized variable value contains error."""
         program = self.getBuildArtifact("a.out")
         self.build_and_launch(program)

``````````

</details>


https://github.com/llvm/llvm-project/pull/111063


More information about the lldb-commits mailing list