From 0eadc53f6d8c7b9bf2760186eaf17a87cf8dfcf6 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 16 May 2016 03:13:12 +0000 Subject: 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 --- lldb/packages/Python/lldbsuite/test/dotest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test') 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") -- cgit v1.2.3