-
Notifications
You must be signed in to change notification settings - Fork 277
fix constructor of string_builtin_functiont #4744
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
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.
✔️
Passed Diffblue compatibility checks (cbmc commit: 5f94d92).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/114010088
Codecov Report
@@ Coverage Diff @@
## develop #4744 +/- ##
==========================================
Coverage ? 68.44%
==========================================
Files ? 1270
Lines ? 104828
Branches ? 0
==========================================
Hits ? 71753
Misses ? 33075
Partials ? 0
Continue to review full report at Codecov.
|
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.
It’s still not clear to me why those aren’t caught in CI. We need to fix this while we still have a known-bad state.
I have looked into this. clang-8 is stricter than clang-7 (but correctly so). To catch these, we could switch the existing clang-7 build to clang-8. That will add a bit to the build time, and add some risk of that build failing, since the clang-8 binaries would need to be downloaded from apt.llvm.org |
This is to catch problems as in #4744.
I am a bit worried, because #4746 appears to be passing even though this PR hasn't been merged. |
The default constructor cannot exist; marking it as 'delete' re-enables compilation with clang.
5f94d92
to
ef1737b
Compare
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.
✔️
Passed Diffblue compatibility checks (cbmc commit: ef1737b).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/114260970
This is to catch problems as in #4744.
This is to catch problems as in #4744.
This is to catch problems as in #4744.
This is to catch problems as in #4744.
I believe this has actually been merged as part of #4746 @kroening @peterschrammel ?! If so, please close this one. |
yes, has been merged. |
This is to catch problems as in diffblue#4744.
The default constructor cannot exist; marking it as
delete
re-enablescompilation with clang.