diff options
author | Jordan Rupprecht <rupprecht@google.com> | 2020-08-05 08:50:41 -0700 |
---|---|---|
committer | Jordan Rupprecht <rupprecht@google.com> | 2020-08-05 10:19:21 -0700 |
commit | f425c0442c3ef137f2c4ab5eebd3d39036b09d70 (patch) | |
tree | 34243567728f14c963b01b4fb1c9451128bd1cb0 /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | 1e90bd7f84d3948807c8f40926e72def664f07fa (diff) | |
download | llvm-f425c0442c3ef137f2c4ab5eebd3d39036b09d70.zip llvm-f425c0442c3ef137f2c4ab5eebd3d39036b09d70.tar.gz llvm-f425c0442c3ef137f2c4ab5eebd3d39036b09d70.tar.bz2 |
[lldb/test] Replace LLDB_TEST_SRC env variable with configuration
Reviewed By: JDevlieghere
Differential Revision: https://reviews.llvm.org/D85322
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 84de013..251787b 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -103,6 +103,10 @@ verbose = 0 # because it doesn't work under a debugger testdirs = [lldbsuite.lldb_test_root] +# The root of the test case tree (where the actual tests reside, not the test +# infrastructure). +test_src_root = lldbsuite.lldb_test_root + # Separator string. separator = '-' * 70 |