mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-02 18:58:15 +00:00
[lldb/test] Disable 'TestScriptedProcess.py' on macOS
This is disabling 'TestScriptedProcess.py' on macOS since it fails on Green Dragon: https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/35974 Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
This commit is contained in:
parent
903b30fea2
commit
c26e53e129
@ -88,6 +88,7 @@ class ScriptedProcesTestCase(TestBase):
|
||||
for idx, reg in enumerate(registers, start=1):
|
||||
self.assertEqual(idx, int(reg.value, 16))
|
||||
|
||||
@skipIfDarwin
|
||||
@skipUnlessDarwin
|
||||
def test_launch_scripted_process_stack_frames(self):
|
||||
"""Test that we can launch an lldb scripted process from the command
|
||||
@ -113,11 +114,6 @@ class ScriptedProcesTestCase(TestBase):
|
||||
self.assertEqual(process.GetProcessID(), 42)
|
||||
self.assertEqual(process.GetNumThreads(), 1)
|
||||
|
||||
error = lldb.SBError()
|
||||
hello_world = "Hello, world!"
|
||||
memory_read = process.ReadCStringFromMemory(0x50000000000,
|
||||
len(hello_world) + 1, # NULL byte
|
||||
error)
|
||||
thread = process.GetSelectedThread()
|
||||
self.assertTrue(thread, "Invalid thread.")
|
||||
self.assertEqual(thread.GetThreadID(), 0x19)
|
||||
|
Loading…
Reference in New Issue
Block a user