mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-26 07:01:05 +00:00
Unique file names for TestStarted and TestFinished.
Summary: This fixes the issue of multiple test suites opening the same file for writing. Reviewers: clayborg, zturner Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D10284 llvm-svn: 239188
This commit is contained in:
parent
9f97bf0943
commit
bb2cc9cf56
@ -1397,7 +1397,7 @@ if not os.path.isdir(sdir_name):
|
||||
if exception.errno != errno.EEXIST:
|
||||
raise
|
||||
where_to_save_session = os.getcwd()
|
||||
fname = os.path.join(sdir_name, "TestStarted")
|
||||
fname = os.path.join(sdir_name, "TestStarted-%d" % os.getpid())
|
||||
with open(fname, "w") as f:
|
||||
print >> f, "Test started at: %s\n" % timestamp_started
|
||||
print >> f, svn_info
|
||||
@ -1774,7 +1774,7 @@ if useCategories and len(failuresPerCategory) > 0:
|
||||
sys.stderr.write("%s - %d\n" % (category,failuresPerCategory[category]))
|
||||
|
||||
os.chdir(where_to_save_session)
|
||||
fname = os.path.join(sdir_name, "TestFinished")
|
||||
fname = os.path.join(sdir_name, "TestFinished-%d" % os.getpid())
|
||||
with open(fname, "w") as f:
|
||||
print >> f, "Test finished at: %s\n" % datetime.datetime.now().strftime("%Y-%m-%d-%H_%M_%S")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user