diff options
author | Pavel Labath <pavel@labath.sk> | 2020-02-13 14:29:50 +0100 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2020-02-13 14:31:08 +0100 |
commit | 91e0c258c2e80b180c0c99af322cb6bf09df86d4 (patch) | |
tree | 8d677ecf1e938c29ad7a062b88ce521c6fb18127 /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | d21664cce1db8debe2528f36b1fbd2b8af9c9401 (diff) | |
download | llvm-91e0c258c2e80b180c0c99af322cb6bf09df86d4.zip llvm-91e0c258c2e80b180c0c99af322cb6bf09df86d4.tar.gz llvm-91e0c258c2e80b180c0c99af322cb6bf09df86d4.tar.bz2 |
[lldb] Fix lldb-dotest
to account for the new location of test files from 99451b445.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 91a2234..faf31e7d 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -97,7 +97,7 @@ verbose = 0 # By default, search from the script directory. # We can't use sys.path[0] to determine the script directory # because it doesn't work under a debugger -testdirs = [os.path.dirname(os.path.realpath(__file__))] +testdirs = [lldbsuite.lldb_test_root] # Separator string. separator = '-' * 70 |