[Lldb-commits] [lldb] fd91e8f - [lldb][test] Skip TestStepAvoidsRegexp.py on Windows
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 10 09:34:31 PDT 2022
Author: Michael Buch
Date: 2022-10-10T17:07:52+01:00
New Revision: fd91e8f5016626328093aedc8419f12af20ff554
URL: https://github.com/llvm/llvm-project/commit/fd91e8f5016626328093aedc8419f12af20ff554
DIFF: https://github.com/llvm/llvm-project/commit/fd91e8f5016626328093aedc8419f12af20ff554.diff
LOG: [lldb][test] Skip TestStepAvoidsRegexp.py on Windows
Added:
Modified:
lldb/test/API/functionalities/step-avoids-regexp/TestStepAvoidsRegexp.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/step-avoids-regexp/TestStepAvoidsRegexp.py b/lldb/test/API/functionalities/step-avoids-regexp/TestStepAvoidsRegexp.py
index a3de53e3c4b9..781928ab5a44 100644
--- a/lldb/test/API/functionalities/step-avoids-regexp/TestStepAvoidsRegexp.py
+++ b/lldb/test/API/functionalities/step-avoids-regexp/TestStepAvoidsRegexp.py
@@ -19,6 +19,7 @@ def setUp(self):
self.dbg.HandleCommand(
"settings set target.process.thread.step-avoid-regexp ^ignore::")
+ @skipIfWindows
def test_step_avoid_regex(self):
"""Tests stepping into a function which matches the avoid regex"""
self.build()
@@ -36,6 +37,7 @@ def test_step_avoid_regex(self):
self.thread.StepInto()
self.hit_correct_function("main")
+ @skipIfWindows
@expectedFailureAll(bugnumber="rdar://100645742")
def test_step_avoid_regex_abi_tagged_template(self):
"""Tests stepping into an ABI tagged function that matches the avoid regex"""
More information about the lldb-commits
mailing list