try to use a pipe for communication

This commit is contained in:
Benjamin Sergeant
2019-03-12 18:32:42 -07:00
parent d6597d9f52
commit 4de3ec995e
3 changed files with 47 additions and 5 deletions

View File

@ -77,6 +77,7 @@ shutil.copy(os.path.join(
'bin',
'zlib.dll'), '.')
testCommand = '{} {}'.format(testBinary, os.getenv('TEST', ''))
lldb = "lldb --batch -o 'run' -k 'thread backtrace all' -k 'quit 1'"
testCommand = '{} {} {}'.format(lldb, testBinary, os.getenv('TEST', ''))
ret = os.system(testCommand)
assert ret == 0, 'Test command failed'