[Lldb-commits] [lldb] a731c5f - [lldb] Remove reproducer test suite (NFC)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri May 26 09:33:46 PDT 2023
Author: Jonas Devlieghere
Date: 2023-05-26T09:33:40-07:00
New Revision: a731c5f01d5a7cd6bc150c11498fe46fbd5bab94
URL: https://github.com/llvm/llvm-project/commit/a731c5f01d5a7cd6bc150c11498fe46fbd5bab94
DIFF: https://github.com/llvm/llvm-project/commit/a731c5f01d5a7cd6bc150c11498fe46fbd5bab94.diff
LOG: [lldb] Remove reproducer test suite (NFC)
The reproducer feature as well as the ability to capture or replay tests
with reproducers was removed. This removes the corresponding CMake
target.
Added:
Modified:
lldb/test/CMakeLists.txt
Removed:
################################################################################
diff --git a/lldb/test/CMakeLists.txt b/lldb/test/CMakeLists.txt
index 4cf796c94652..f215704db12c 100644
--- a/lldb/test/CMakeLists.txt
+++ b/lldb/test/CMakeLists.txt
@@ -260,27 +260,6 @@ add_lit_testsuite(check-lldb "Running lldb lit test suite"
lldb-unit-test-deps)
set_target_properties(check-lldb PROPERTIES FOLDER "lldb tests")
-# Add a lit test suite that runs the API & shell test while capturing a
-# reproducer.
-add_lit_testsuite(check-lldb-reproducers-capture
- "Running lldb test suite with reproducer capture"
- ${CMAKE_CURRENT_BINARY_DIR}/API
- ${CMAKE_CURRENT_BINARY_DIR}/Shell
- PARAMS "lldb-run-with-repro=capture"
- EXCLUDE_FROM_CHECK_ALL
- DEPENDS lldb-test-depends)
-
-# Add a lit test suite that runs the API & shell test by replaying a
-# reproducer.
-add_lit_testsuite(check-lldb-reproducers
- "Running lldb test suite with reproducer replay"
- ${CMAKE_CURRENT_BINARY_DIR}/API
- ${CMAKE_CURRENT_BINARY_DIR}/Shell
- PARAMS "lldb-run-with-repro=replay"
- EXCLUDE_FROM_CHECK_ALL
- DEPENDS lldb-test-depends)
-add_dependencies(check-lldb-reproducers check-lldb-reproducers-capture)
-
if(LLDB_BUILT_STANDALONE)
# This has to happen *AFTER* add_lit_testsuite.
if (EXISTS ${LLVM_MAIN_SRC_DIR}/utils/llvm-lit)
More information about the lldb-commits
mailing list