-
Notifications
You must be signed in to change notification settings - Fork 38
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
Variables of the flag --mbt included into the ITF trace #1559
Conversation
Hi @bugarela : some automated checks are failing here, and this seems to be associated with unexpected |
Hi @ivan-gavran. They are lot related to whitespaces, that's just additional information on the test reporting. The problem is the order of the fields in the JSON or in the Quint-printed trace - the comparison is not smart, it is just comparing the expected vs actual output as text. By renaming the fields, as you did, they get outputted in a different order, so you need to update the test expectations in For example, on this failing test:
The order of variables is: |
Thanks @bugarela, fixed that. However, there again seems to be a problem with
Now I really cannot see how my changes might have an effect on the generated TLA+. Any idea what could be the reason for this failing test? |
Hi @ivan-gavran, thanks. This time, it's not your fault, just unfortunate timing - sorry about that. I have a fix coming in #1565 This is an issue of our CI - it uses the latest version of Apalache instead of the one Quint sets, and there was a small breaking change regarding the |
There you go |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for taking care of this
Thanks for your help! Very proud to contribute to quint (even if it is a super small PR :) ) |
Adds variables
mbt::actionTaken
andmbt::nondetPicks
to ITF's "vars" field.Also, renames existing
action_taken
intombt::actionTaken
andnondet_picks
intombt::nondetPicks
.Fixes issue #1558
CHANGELOG.md
for any new functionalityREADME.md
updated for any listed functionality