From: Daniel Malea Date: Wed, 6 Feb 2013 16:55:07 +0000 (+0000) Subject: Fix bug in test harness to allow running dotest.py without "--executable" flag on... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e1cf09c89343dbbe14490c550ab1fc74b642003;p=platform%2Fupstream%2Fllvm.git 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 --- 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())