3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 06:04:06 +00:00

Rename ".stamp" file to "status"

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2019-03-15 16:29:11 +01:00
parent ef0d708dfb
commit 410db87ebc

View file

@ -374,7 +374,7 @@ def run_job(taskname):
for line in logf:
print(line.replace("&", "&amp;").replace("<", "&lt;").replace(">", "&gt;").replace("\"", "&quot;"), end="", file=f)
print('</system-out></testcase></testsuite></testsuites>', file=f)
with open("%s/.stamp" % (job.workdir), "w") as f:
with open("%s/status" % (job.workdir), "w") as f:
print("%s %d %d" % (job.status, job.retcode, job.total_time), file=f)
return job.retcode