summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities/value_md5_crash/TestValueMD5Crash.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/functionalities/value_md5_crash/TestValueMD5Crash.py')
-rw-r--r--lldb/test/functionalities/value_md5_crash/TestValueMD5Crash.py18
1 files changed, 3 insertions, 15 deletions
diff --git a/lldb/test/functionalities/value_md5_crash/TestValueMD5Crash.py b/lldb/test/functionalities/value_md5_crash/TestValueMD5Crash.py
index 67885aa41c3..2f735871008 100644
--- a/lldb/test/functionalities/value_md5_crash/TestValueMD5Crash.py
+++ b/lldb/test/functionalities/value_md5_crash/TestValueMD5Crash.py
@@ -12,28 +12,16 @@ class ValueMD5CrashTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
- @skipUnlessDarwin
- @dsym_test
- def test_with_dsym_and_run_command(self):
- """Verify that the hash computing logic for ValueObject's values can't crash us."""
- self.buildDsym()
- self.doThings()
-
- @dwarf_test
- @expectedFailureWindows("llvm.org/pr24663")
- def test_with_dwarf_and_run_command(self):
- """Verify that the hash computing logic for ValueObject's values can't crash us."""
- self.buildDwarf()
- self.doThings()
-
def setUp(self):
# Call super's setUp().
TestBase.setUp(self)
# Find the line number to break at.
self.line = line_number('main.cpp', '// break here')
- def doThings(self):
+ @expectedFailureWindows("llvm.org/pr24663")
+ def test_with_run_command(self):
"""Verify that the hash computing logic for ValueObject's values can't crash us."""
+ self.build()
self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=1, loc_exact=True)
OpenPOWER on IntegriCloud