This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
076308a4b5
llvm-project
/
lldb
/
utils
/
CMakeLists.txt
4 lines
87 B
CMake
Raw
Normal View
History
Unescape
Escape
[lldb/Cmake] Add a CMakeLists.txt to the utils directory... ... and include it from the main CMakeLists.txt instead of including the utility subdirectories directly. This is consistent with the other subdirectories and limits the scope of future changes.
2020-01-17 14:30:03 +08:00
add_subdirectory
(
lit-cpuid
)
add_subdirectory
(
lldb-dotest
)
[lldb/Util] Add a utility to run transparently capture and replay tests. This patch introduces a small new utility (lldb-repro) to transparently capture and replay debugger sessions through the command line driver. Its used to test the reproducers by running the test suite twice. During the first run, it captures a reproducer for every lldb invocation and saves it to a well-know location derived from the arguments and current working directory. During the second run, the test suite is run again but this time every invocation of lldb replays the previously recorded session. Differential revision: https://reviews.llvm.org/D72823
2020-01-21 02:27:15 +08:00
add_subdirectory
(
lldb-repro
)