diff options
author | Zachary Turner <zturner@google.com> | 2016-05-17 18:02:34 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-05-17 18:02:34 +0000 |
commit | 8d4d151bb2a13a5b953c5ccaaec743286def5b99 (patch) | |
tree | 99bfa18a9eb2f62e68d0eb1f72841354e5a554c3 /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | 7a19307705f54ea095f361a4cedb3a7377178687 (diff) | |
download | llvm-8d4d151bb2a13a5b953c5ccaaec743286def5b99.zip llvm-8d4d151bb2a13a5b953c5ccaaec743286def5b99.tar.gz llvm-8d4d151bb2a13a5b953c5ccaaec743286def5b99.tar.bz2 |
Allow custom formatting of session log file names.
Differential Revision: http://reviews.llvm.org/D20306
llvm-svn: 269793
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 69ed9fc..d797b17 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -100,6 +100,15 @@ regexp = None # run. Use '-s session-dir-name' to specify a specific dir name. sdir_name = None +# Valid options: +# f - test file name (without extension) +# n - test class name +# m - test method name +# a - architecture +# c - compiler path +# The default is to write all fields. +session_file_format = 'fnmac' + # Set this flag if there is any session info dumped during the test run. sdir_has_content = False |