diff options
-rwxr-xr-x | lldb/test/dotest.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index de2b56f8b5c..18b2e268b62 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -576,7 +576,10 @@ def setupSysPath(): print "The 'lldb' executable cannot be located. Some of the tests may not be run as a result." else: os.environ["LLDB_EXEC"] = lldbExec - print "The 'lldb' executable path is", lldbExec + #print "The 'lldb' executable path is", lldbExec + os.system('%s -v' % lldbExec) + + os.system('svn info %s' % base) global ignore |