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

Johnny Chen johnny.chen at apple.com
Tue Nov 9 15:42:01 PST 2010


Author: johnny
Date: Tue Nov  9 17:42:00 2010
New Revision: 118650

URL: http://llvm.org/viewvc/llvm-project?rev=118650&view=rev
Log:
Rephrase the output message about session information; make it both "session logs".

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=118650&r1=118649&r2=118650&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Tue Nov  9 17:42:00 2010
@@ -573,7 +573,7 @@
     timestamp = datetime.datetime.now().strftime("%Y-%m-%d-%H_%M_%S")
     sdir_name = timestamp
 os.environ["LLDB_SESSION_DIRNAME"] = sdir_name
-sys.stderr.write("\nSession info for test failures/errors will go into directory '%s'\n" % sdir_name)
+sys.stderr.write("\nSession logs for test failures/errors will go into directory '%s'\n" % sdir_name)
 
 #
 # Invoke the default TextTestRunner to run the test suite, possibly iterating
@@ -714,7 +714,7 @@
         
 
 if sdir_has_content:
-    sys.stderr.write("\nSession logs for test failures/errors can be found in directory '%s'\n" % sdir_name)
+    sys.stderr.write("Session logs for test failures/errors can be found in directory '%s'\n" % sdir_name)
 
 # Terminate the test suite if ${LLDB_TESTSUITE_FORCE_FINISH} is defined.
 # This should not be necessary now.





More information about the lldb-commits mailing list