From 0e1cf09c89343dbbe14490c550ab1fc74b642003 Mon Sep 17 00:00:00 2001 From: Daniel Malea Date: Wed, 6 Feb 2013 16:55:07 +0000 Subject: [PATCH] Fix bug in test harness to allow running dotest.py without "--executable" flag on Linux - resolves errors in cases that run the lldb CLI utility llvm-svn: 174522 --- lldb/test/dotest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index 5d96fc8..9ecfdd0 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -797,6 +797,8 @@ def setupSysPath(): lldbExec = which('lldb') if lldbHere and not lldbExec: lldbExec = lldbHere + if lldbExec and not lldbHere: + lldbHere = lldbExec if lldbHere: os.environ["LLDB_HERE"] = lldbHere @@ -1458,4 +1460,4 @@ if ("LLDB_TESTSUITE_FORCE_FINISH" in os.environ): subprocess.Popen(["/bin/sh", "-c", "kill %s; exit 0" % (os.getpid())]) # Exiting. -sys.exit(not result.wasSuccessful) +sys.exit(not result.wasSuccessful()) -- 2.7.4