Added option for updating a CSV file with test results

This is mostly for the bench runner which will contain more interesting
results besides just pass/fail.
This commit is contained in:
Christopher Haster
2022-09-12 12:17:46 -05:00
parent 03c1a4ee2e
commit 23fba40f20
3 changed files with 100 additions and 37 deletions

View File

@@ -600,6 +600,8 @@ def main(path='-', *,
time.sleep(sleep)
if not keep_open:
break
# don't just flood open calls
time.sleep(sleep)
except KeyboardInterrupt:
pass
else:
@@ -618,6 +620,8 @@ def main(path='-', *,
event.set()
if not keep_open:
break
# don't just flood open calls
time.sleep(sleep)
done = True
th.Thread(target=parse, daemon=True).start()