diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-05-16 03:13:12 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-05-16 03:13:12 +0000 |
commit | 0eadc53f6d8c7b9bf2760186eaf17a87cf8dfcf6 (patch) | |
tree | 05f98839b3b26878a8ff0e7bc2e94f1761600c55 /lldb/packages/Python/lldbsuite | |
parent | c0d0e361970ac7bd8869c24e6fd00e890a1c115f (diff) | |
download | bcm5719-llvm-0eadc53f6d8c7b9bf2760186eaf17a87cf8dfcf6.tar.gz bcm5719-llvm-0eadc53f6d8c7b9bf2760186eaf17a87cf8dfcf6.zip |
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')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 3 |
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 d473186d574..bffdf41709c 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") |