-
Notifications
You must be signed in to change notification settings - Fork 267
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
Out of resources error reporting #5281
Out of resources error reporting #5281
Conversation
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.
Knowing which single assertion times out will be very useful for verification debugging.
Verified part 1/3 of Foo, on line 5 (redacted, resource count: 8.7E+002) | ||
Verified part 2/3 of Foo, on line 6 (redacted, resource count: 3.1E+003) | ||
Verified part 3/3 of Foo, on line 7 (redacted, resource count: 2.8E+003) | ||
Verification part 1/3 of Foo, on line 5, verified successfully, redacted and consuming 8.7E+002 resources |
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.
What does "redacted" mean?
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.
Because the time taken is not consistent over runs, I replace it with "redacted" in tests using sed
.
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.
I know you replace it with "redacted", my question was really about the meaning of "redacted".
I don't know the rationale behind choosing "redacted" for that replacement. For me, "redacted" means "edit (text) for publication.".
If it was me, I would have just removed the variable part, so that the error would look like "verified successfully and consuming ...."
So my question is, why was the word "redacted" chosen here?
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.
I'm using it as a means to say "there was something else here, but it has been removed"
Co-authored-by: Mikaël Mayer <[email protected]>
Description
--progress
option--progress
Examples
Results in
New look of
--progress
:How has this been tested?
outOfResourceAndIsolateAssertions.dfy
By submitting this pull request, I confirm that my contribution is made under the terms of the MIT license.