diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-04-14 08:41:50 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-04-14 09:24:23 -0700 |
commit | fc410138939fbc98d7eb700e0e898500a00efc4d (patch) | |
tree | fc6c99eec9108bbb1b19bb4a6b2251b733811d7c /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | c1a9dd9aea498dd78d6583f29f15a690ddd5466a (diff) | |
download | llvm-fc410138939fbc98d7eb700e0e898500a00efc4d.zip llvm-fc410138939fbc98d7eb700e0e898500a00efc4d.tar.gz llvm-fc410138939fbc98d7eb700e0e898500a00efc4d.tar.bz2 |
[lldb/Reproducers] Capture reproducers from the API test suite.
Make it possible to capture reproducers from the API test suite. Given
the symmetry between capture and replay, this patch also adds the
necessary code for replay. For now this is a NO-OP until the
corresponding reproducer instrumentation changes land.
For more info please refer to the RFC on lldb-dev:
http://lists.llvm.org/pipermail/lldb-dev/2020-April/016100.html
Differential revision: https://reviews.llvm.org/D77588
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index ce6f46a..9d69438 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -87,7 +87,6 @@ session_file_format = 'fnmac' # Set this flag if there is any session info dumped during the test run. sdir_has_content = False - # svn_info stores the output from 'svn info lldb.base.dir'. svn_info = '' @@ -124,6 +123,10 @@ results_formatter_object = None results_formatter_options = None test_result = None +# Reproducers +capture_path = None +replay_path = None + # Test rerun configuration vars rerun_all_issues = False |