diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index ddae780..53f587b 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -160,3 +160,9 @@ def get_filecheck_path(): """ if filecheck and os.path.lexists(filecheck): return filecheck + +def is_reproducer_replay(): + """ + Returns true when test is replayed from a reproducer. + """ + return replay_path is not None |