-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
max_tracelength option is global, not local #183
Comments
@bennn Example demonstrating the option-ordering question as promised. This example where the problem arise is temporal-specific, but seems likely to impact other options as well. |
Folllowing up on this, copying contents of a code-dive mail I just sent. This isn't just temporal options; it's an issue with the Forge option statements are supposed to take effect at their position in the module. So this should pass:
Unfortunately, this isn't currently happening. The issue is that, since we shuffle the execution of runs and tests to the end of a module (via the will actually run as We could fix this by just invoking So if I make this change, options will be excluded, too. Instead, it's worth investigating what is going wrong with the separation of
|
This issue is not happening for
|
One other threat that comes up is: should the name of a test in module A be bound in a module importing A? Why does the |
Example:
Test
unsat_10_4
fails in Forge 2.1.0; if you turn on verbose 5 you'll see that the max tracelength sent to Pardinus is 16 for that test. If options apply in-place, I'd expect the trace length there to be 10.The text was updated successfully, but these errors were encountered: