[Lldb-commits] [lldb] r118427 - /lldb/trunk/test/dotest.py
Johnny Chen
johnny.chen at apple.com
Mon Nov 8 11:03:37 PST 2010
Author: johnny
Date: Mon Nov 8 13:03:37 2010
New Revision: 118427
URL: http://llvm.org/viewvc/llvm-project?rev=118427&view=rev
Log:
Let's also emit the informational message for where to find the session logs for
failed/errored tests at the start of the test run, in case the test run crashes
for any reason. That way, it is easy to locate the session logs for accumulated
failures/errors.
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=118427&r1=118426&r2=118427&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Mon Nov 8 13:03:37 2010
@@ -573,6 +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)
#
# Invoke the default TextTestRunner to run the test suite, possibly iterating
More information about the lldb-commits
mailing list