-
Notifications
You must be signed in to change notification settings - Fork 530
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
doubly-linked-list: improve leak check #2043
Conversation
Previously the check may fail due to an underflow in the subtraction, rather than the assert. Forum discussion: https://forum.exercism.org/t/fix-operand-order-in-leaked-bytes-check-in-leak-test-doubly-linked-list-rust-exercise/15884
let leaked_bytes = allocated_before - allocated_after; | ||
assert!(leaked_bytes == 0); |
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.
Was there any particular reason for choosing subtraction over equality in the past? It seems like a really strange decision.
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.
Looking at it more closely, it just looks like a logic error. Even if there was a reason for the subtraction, the order should have been reversed. There's no conceivable reason for allocated_before
to ever be larger than allocated_after
.
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.
Original PR is here, I can't find any discussion on that.
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!
let leaked_bytes = allocated_before - allocated_after; | ||
assert!(leaked_bytes == 0); |
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.
Looking at it more closely, it just looks like a logic error. Even if there was a reason for the subtraction, the order should have been reversed. There's no conceivable reason for allocated_before
to ever be larger than allocated_after
.
Previously the check may fail due to an underflow in the subtraction, rather than the assert.
Forum discussion:
https://forum.exercism.org/t/fix-operand-order-in-leaked-bytes-check-in-leak-test-doubly-linked-list-rust-exercise/15884