diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-03-17 00:38:22 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-03-17 00:38:22 +0000 |
commit | dbfc256eec952416c80678c7f5aed86bd8256e5e (patch) | |
tree | dcbbcc0bcac0f9b86613fac74f1a7083758836d8 | |
parent | b39c7c7b17434235faf07ecbcd41215b82f9422f (diff) | |
download | bcm5719-llvm-dbfc256eec952416c80678c7f5aed86bd8256e5e.tar.gz bcm5719-llvm-dbfc256eec952416c80678c7f5aed86bd8256e5e.zip |
As a simple measure, output the lldb version and the svn info for
which the testsuite is run against.
llvm-svn: 127782
-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 |