aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/dotest.py
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2016-05-16 03:13:12 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2016-05-16 03:13:12 +0000
commit0eadc53f6d8c7b9bf2760186eaf17a87cf8dfcf6 (patch)
tree05f98839b3b26878a8ff0e7bc2e94f1761600c55 /lldb/packages/Python/lldbsuite/test/dotest.py
parentc0d0e361970ac7bd8869c24e6fd00e890a1c115f (diff)
downloadllvm-0eadc53f6d8c7b9bf2760186eaf17a87cf8dfcf6.zip
llvm-0eadc53f6d8c7b9bf2760186eaf17a87cf8dfcf6.tar.gz
llvm-0eadc53f6d8c7b9bf2760186eaf17a87cf8dfcf6.tar.bz2
test: remove use of undefined variables
The variables referenced in the print message are not defined. Simply state that the requisite script is not found. Correct grammar to indicate that the tests are rather likely to fail rather than unlikely to fail. llvm-svn: 269628
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/dotest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py
index d473186..bffdf41 100644
--- a/lldb/packages/Python/lldbsuite/test/dotest.py
+++ b/lldb/packages/Python/lldbsuite/test/dotest.py
@@ -646,8 +646,7 @@ def setupSysPath():
break
if not lldbPythonDir:
- print('This script requires lldb.py to be in either ' + dbgPath + ',', end=' ')
- print(relPath + ', or ' + baiPath + '. Some tests might fail.')
+ print("lldb.py is not found, some tests may fail.")
else:
print("Unable to load lldb extension module. Possible reasons for this include:")
print(" 1) LLDB was built with LLDB_DISABLE_PYTHON=1")