summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
diff options
context:
space:
mode:
authorJason Molenda <jason@molenda.com>2024-01-29 11:00:27 -0800
committerJason Molenda <jason@molenda.com>2024-01-29 11:01:08 -0800
commit547c395b279a93357082ac06cf3e8fe37ebfc3fe (patch)
tree7c6c671ccfad530b0f6c43dce7f97d27e42689e0 /lldb/test/API/functionalities/step_scripted/TestStepScripted.py
parent5dce6353b5e42248c7271f7694613831a6d427de (diff)
Revert "[lldb/Test] Temporarily XFAIL TestStepScripted.py"
Also revert this patch until Ismail can re-land. This reverts commit febb4c42b192ed7c88c17f91cb903a59acf20baf.
Diffstat (limited to 'lldb/test/API/functionalities/step_scripted/TestStepScripted.py')
-rw-r--r--lldb/test/API/functionalities/step_scripted/TestStepScripted.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/test/API/functionalities/step_scripted/TestStepScripted.py b/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
index 217ab10841cc..9891a9c23b50 100644
--- a/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
+++ b/lldb/test/API/functionalities/step_scripted/TestStepScripted.py
@@ -16,14 +16,12 @@ class StepScriptedTestCase(TestBase):
self.main_source_file = lldb.SBFileSpec("main.c")
self.runCmd("command script import Steps.py")
- @expectedFailureAll
def test_standard_step_out(self):
"""Tests stepping with the scripted thread plan laying over a standard
thread plan for stepping out."""
self.build()
self.step_out_with_scripted_plan("Steps.StepOut")
- @expectedFailureAll
def test_scripted_step_out(self):
"""Tests stepping with the scripted thread plan laying over an another
scripted thread plan for stepping out."""
@@ -64,12 +62,10 @@ class StepScriptedTestCase(TestBase):
# Make sure we didn't let the process run:
self.assertEqual(stop_id, process.GetStopID(), "Process didn't run")
- @expectedFailureAll
def test_checking_variable(self):
"""Test that we can call SBValue API's from a scripted thread plan - using SBAPI's to step"""
self.do_test_checking_variable(False)
- @expectedFailureAll
def test_checking_variable_cli(self):
"""Test that we can call SBValue API's from a scripted thread plan - using cli to step"""
self.do_test_checking_variable(True)