Closed livnev closed 6 years ago
@livnev one way to mitigate the issue of the mystery K crashes is to re-run the proof on initial failure in the Makefile. Replace:
%.test: pre-test
klab run --headless --force --spec $*
with:
%.test: pre-test
klab run --headless --force --spec $* \
|| klab run --headless --force --spec $*
If the first invocation fails, the second will be called. If the first succeeds, the second will not be called, if the second succeeds, it succeeds overall.
@ehildenb Nice, that should help until we figure out the cause of the issue.
Closing in favour of #13
This is up to date with current
dss
master
branch.