aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/configuration.py
diff options
context:
space:
mode:
authorPavel Labath <pavel@labath.sk>2020-02-13 14:29:50 +0100
committerPavel Labath <pavel@labath.sk>2020-02-13 14:31:08 +0100
commit91e0c258c2e80b180c0c99af322cb6bf09df86d4 (patch)
tree8d677ecf1e938c29ad7a062b88ce521c6fb18127 /lldb/packages/Python/lldbsuite/test/configuration.py
parentd21664cce1db8debe2528f36b1fbd2b8af9c9401 (diff)
downloadllvm-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.py2
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