Skip to content

Commit 88591aa

Browse files
committed
[lldb] Remove lldb-repro utility
Remove lldb-repro which was used to run the test suite against a reproducer. The corresponding functionality has been removed from LLDB so there's no need for the tool anymore.
1 parent a9a8351 commit 88591aa

35 files changed

+0
-190
lines changed

lldb/test/API/lit.cfg.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -268,12 +268,6 @@ def delete_module_cache(path):
268268
if is_configured("lldb_framework_dir"):
269269
dotest_cmd += ["--framework", config.lldb_framework_dir]
270270

271-
if (
272-
"lldb-repro-capture" in config.available_features
273-
or "lldb-repro-replay" in config.available_features
274-
):
275-
dotest_cmd += ["--skip-category=lldb-dap", "--skip-category=std-module"]
276-
277271
if "lldb-simulator-ios" in config.available_features:
278272
dotest_cmd += ["--apple-sdk", "iphonesimulator", "--platform-name", "ios-simulator"]
279273
elif "lldb-simulator-watchos" in config.available_features:

lldb/test/Shell/Driver/LocalLLDBInit.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# REQUIRES: python
2-
# UNSUPPORTED: lldb-repro
32
#
43
# RUN: mkdir -p %t.root
54
# RUN: mkdir -p %t.home

lldb/test/Shell/Driver/TestCore.test

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
# UNSUPPORTED: lldb-repro
2-
#
31
# RUN: not %lldb -c /bogus/path 2>&1 | FileCheck %s
42
# CHECK: error: file specified in --core (-c) option doesn't exist

lldb/test/Shell/Driver/TestError.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
UNSUPPORTED: lldb-repro
21
RUN: not %lldb --arch 2>&1 | FileCheck %s
32
CHECK: error: argument to '--arch' is missing

lldb/test/Shell/Driver/TestFile.test

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
# UNSUPPORTED: lldb-repro
2-
#
31
# RUN: not %lldb -f /bogus/path 2>&1 | FileCheck %s
42
# CHECK: error: file specified in --file (-f) option doesn't exist

lldb/test/Shell/Driver/TestHelp.test

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
UNSUPPORTED: lldb-repro
2-
31
RUN: %lldb --help | FileCheck %s
42
RUN: cat %S/../../../docs/man/lldb.rst | FileCheck %s
53

lldb/test/Shell/Driver/TestPositionalArgs.test

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
UNSUPPORTED: lldb-repro
2-
31
RUN: echo "int main() { return 0; }" | %clang_host -x c - -o %t.foo
42

53
RUN: %lldb -x -b %t.foo bar baz quux | FileCheck %s

lldb/test/Shell/Driver/TestRepl.test

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# UNSUPPORTED: lldb-repro
2-
#
31
# RUN: echo ':quit' | %lldb -x --repl -O 'expr 42' -S %S/Inputs/Print2.in -o 'expr 999999' -s %s 2>&1 | FileCheck %s
42
# CHECK: {{w}}arning: commands specified to run after file load (via -o or -s) are ignored in REPL mode
53
# CHECK: (int) $0 = 42

lldb/test/Shell/Process/TestEnvironment.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
UNSUPPORTED: system-windows
2-
UNSUPPORTED: lldb-repro
32

43
The double quotes around "BAR" ensure we don't match the command.
54

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# UNSUPPORTED: system-windows
2-
# UNSUPPORTED: lldb-repro
32
# RUN: %python %S/expect_exit_code.py 226 %lldb -b -s %s
43
q -30

0 commit comments

Comments
 (0)