From 9db6a41687bacde82585f127b43d418d5845e5c7 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 18 Apr 2016 15:45:45 -0700 Subject: [PATCH] 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 --- src/etc/lldb_batchmode.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/etc/lldb_batchmode.py b/src/etc/lldb_batchmode.py index b1506285b3ac1..7bbb3577f8d93 100644 --- a/src/etc/lldb_batchmode.py +++ b/src/etc/lldb_batchmode.py @@ -216,4 +216,5 @@ def watchdog(): print("Aborting.", file=sys.stderr) sys.exit(1) finally: + debugger.Terminate() script_file.close()