etc: Add debugger.Terminate() to lldb_batchmode.py

Right now on the most recent version of LLDB installed on OSX we'll segfault on
all the LLDB tests if this isn't called (unfortunately). Hopefully we've updated
LLDB on the bots to actually get this working everywhere!

Closes #32994
This commit is contained in:
Alex Crichton 2016-04-18 15:45:45 -07:00
parent 478a33dabc
commit 9db6a41687

View file

@ -216,4 +216,5 @@ except IOError as e:
print("Aborting.", file=sys.stderr)
sys.exit(1)
finally:
debugger.Terminate()
script_file.close()