From 457a6d49d565075ae99f0e5a931bbed6512dce2f Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 30 Jan 2020 15:51:29 -0800 Subject: [lldb/Reproducers] Fix typo in CMake so we actually replay. The CMakeLists.txt had a typo which meant that check-lldb-repro was capturing twice instead of capturing and then replaying. This also uncovered a missing import in lldb-repro.py. This patch fixes both issues. --- lldb/utils/lldb-repro/lldb-repro.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lldb/utils') diff --git a/lldb/utils/lldb-repro/lldb-repro.py b/lldb/utils/lldb-repro/lldb-repro.py index f7bcd3b..fddd65e 100755 --- a/lldb/utils/lldb-repro/lldb-repro.py +++ b/lldb/utils/lldb-repro/lldb-repro.py @@ -14,11 +14,12 @@ run again but this time every invocation of lldb replays the previously recorded session. """ -import sys +import hashlib import os -import tempfile +import shutil import subprocess -import hashlib +import sys +import tempfile def help(): -- cgit v1.1