-
Notifications
You must be signed in to change notification settings - Fork 0
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
test_fault_handler: exit nonzero if expected segfault missing #378
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.
This makes sense to me from what I can tell.
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.
Did you also want to disable three_keys_minimal
in CI until it's fixed?
I think we can wait to merge this until we figure out what's wrong with that test and |
Do we have an issue on |
cdd308a
to
55257b0
Compare
It looks like we need to delete the build directory in CI? #418 |
5a27f6c
to
d0fefda
Compare
we previously tested for the printed message with FileCheck, but now our criterion-based tests care about exit codes this was hiding test failures on ARM64
d0fefda
to
a94708b
Compare
We previously tested for the printed message with FileCheck, but now our Criterion-based tests only care about exit codes.
This was hiding test failures on both AArch64 and x86_64.
Based on bisecting it appears the
three_keys_minimal
test has never worked but its failures have always been masked by thetest_fault_handler
bug that this fixes. I'll look into things more tomorrow.