You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The continuous integration tests on my recent pull requests (#672, #671, #669) are all failing because of the same reason: The regression test for issue #444 requires yices to be installed, but it apparently isn't available when running the tests.
> SBV error:
> Unable to locate executable for Yices
> Executable specified: "yices-smt2"
We should make sure that yices is available when running the continuous integration tests.
The text was updated successfully, but these errors were encountered:
Pull request #674 seems to make the yices binary available like I wanted, but now there's another problem: It turns out that the expected error message in issue444.icry.stdout contains the absolute path to the solver binary, which is not the same from one machine to another.
We might still want to merge #674 so that we can have yices available for other regression tests. But because of the system-specific absolute path in the output, I think we'll have to remove the regression test for #444 from the test suite by reverting 85bff67.
This reverts commit 85bff67.
The error message in the expected output file `issue444.icry.stdout`
contained a system-specific absolute file path.
Fixes#673.
The continuous integration tests on my recent pull requests (#672, #671, #669) are all failing because of the same reason: The regression test for issue #444 requires
yices
to be installed, but it apparently isn't available when running the tests.We should make sure that
yices
is available when running the continuous integration tests.The text was updated successfully, but these errors were encountered: