coq-community / run-coq-bug-minimizer

Repository for triggering runs of the Coq bug minimizer using GitHub Actions [maintainer=@JasonGross]
MIT License
2 stars 0 forks source link

Wrapped binaries should emit information to a file rather than stderr #11

Open JasonGross opened 3 years ago

JasonGross commented 3 years ago

This might let us debug coq-tools. We'll have to be careful about parallel builds, maybe we should do something like exec >>(tee -a /path/to/log-file-`date +%s`-$$.stdout.log) 2>>(tee -a /path/to/log-file-`date +%s`-$$.stderr.log >&2) and that way we can get time-ordering and also a lack of parallel collision?