Skip to content

Commit

Permalink
[lldb/Reproducers] Skip remaining failing test in python_api subdir
Browse files Browse the repository at this point in the history
Skip the remaining two failing test in the python_api subdirectory. See
inline comments for the reason why.
  • Loading branch information
JDevlieghere committed May 26, 2020
1 parent 0165cf7 commit 8d31dd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions lldb/test/API/python_api/hello_world/TestHelloWorld.py
Expand Up @@ -75,6 +75,7 @@ def test_with_process_launch_api(self):
@add_test_categories(['pyapi'])
@skipIfiOSSimulator
@expectedFailureNetBSD
@skipIfReproducer # File synchronization is not supported during replay.
def test_with_attach_to_process_with_id_api(self):
"""Create target, spawn a process, and attach to it with process id."""
exe = '%s_%d'%(self.testMethodName, os.getpid())
Expand Down
2 changes: 2 additions & 0 deletions lldb/test/API/python_api/sbdata/TestSBData.py
Expand Up @@ -21,6 +21,7 @@ def setUp(self):
self.line = line_number('main.cpp', '// set breakpoint here')

@add_test_categories(['pyapi'])
@skipIfReproducer # SBData::SetData is not instrumented.
def test_byte_order_and_address_byte_size(self):
"""Test the SBData::SetData() to ensure the byte order and address
byte size are obeyed"""
Expand All @@ -41,6 +42,7 @@ def test_byte_order_and_address_byte_size(self):
self.assertTrue(addr == 0x8877665544332211);

@add_test_categories(['pyapi'])
@skipIfReproducer # SBData::SetData is not instrumented.
def test_with_run_command(self):
"""Test the SBData APIs."""
self.build()
Expand Down

0 comments on commit 8d31dd2

Please sign in to comment.