-
-
Notifications
You must be signed in to change notification settings - Fork 22k
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
Add thirdparty/ ubsan suppressions for TPS demo #100382
Conversation
implicit-integer-sign-change:thirdparty/zlib/trees.c | ||
implicit-integer-sign-change:thirdparty/zstd/compress/zstd_cwksp.h | ||
integer-divide-by-zero:thirdparty/misc/ok_color.h |
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 mean to remove this one?
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.
Yeah, it supposed to be float, not int. It is added back in as well.
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.
Actually there's another case of this. I'll need to do another force push. It seems that github ci sometimes decides to not give me the latest logs...
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.
Okay, this is definitely good now. I checked the github ci, and ran the same test locally, and the output matches.
With these suppressions it is possible to import and run the TPS demo without any thirdparty/ reported ubsan. This is useful because it is a complex project, so it is good for testing if new errors show up in our own code.
af3c809
to
49a19db
Compare
I think this can be merged, there's no more |
Thanks! |
With these suppressions it is possible to import and run the TPS demo without any thirdparty/ reported ubsan.
This is useful because it is a complex project, so it is good for testing if new errors show up in our own code.
Sorry for the double PR, I could've rolled this into the previous one, but I didn't think to do this until now. This should be the last of it though.