[Lldb-commits] [lldb] r117730 - /lldb/trunk/test/dotest.py
Johnny Chen
johnny.chen at apple.com
Fri Oct 29 15:26:38 PDT 2010
Author: johnny
Date: Fri Oct 29 17:26:38 2010
New Revision: 117730
URL: http://llvm.org/viewvc/llvm-project?rev=117730&view=rev
Log:
Add some comment about the default session dir name which is a timestamp.
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=117730&r1=117729&r2=117730&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Fri Oct 29 17:26:38 2010
@@ -568,6 +568,7 @@
# See also TestBase.dumpSessionInfo() in lldbtest.py.
if not sdir_name:
import datetime
+ # The windows platforms don't like ':' in the pathname.
timestamp = datetime.datetime.now().strftime("%Y-%m-%d-%H_%M_%S")
sdir_name = timestamp
os.environ["LLDB_SESSION_DIRNAME"] = sdir_name
More information about the lldb-commits
mailing list