[Lldb-commits] [lldb] r127782 - /lldb/trunk/test/dotest.py

Johnny Chen johnny.chen at apple.com
Wed Mar 16 17:38:22 PDT 2011


Author: johnny
Date: Wed Mar 16 19:38:22 2011
New Revision: 127782

URL: http://llvm.org/viewvc/llvm-project?rev=127782&view=rev
Log:
As a simple measure, output the lldb version and the svn info for
which the testsuite is run against.

Modified:
    lldb/trunk/test/dotest.py

Modified: lldb/trunk/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=127782&r1=127781&r2=127782&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Wed Mar 16 19:38:22 2011
@@ -576,7 +576,10 @@
         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
 





More information about the lldb-commits mailing list