-
Notifications
You must be signed in to change notification settings - Fork 221
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
Suppress cppcheck exceptions #606
base: main
Are you sure you want to change the base?
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.
Currently cppcheck already passes on main, while it does not pass on your local machine.
We suspect this is due to clang compiler being used? So can the first commit in this PR change our CI such that errors you bypass are reproducible there?
Also: current suppressions in the code mostly have explanations to them as to why they are suppressed, not fixed. Could we do the same?
e4a0ffe
to
e75ab51
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.
Added a commit with job that runs analyzers on mac. It is not clear how to fix the issues.
9ed7f65
to
007c75b
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.
Good. Now I see what has failed. We actually can fix most of them!
.github/workflows/analyzers.yaml
Outdated
cmake -S . -B build \ | ||
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ | ||
-DBUILD_PYTHON=OFF \ | ||
-DBUILD_TESTING=OFF |
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.
You have to turn on testing if you want it enabled for testing locally too.
That would lead to fixing few more errors that you don't get, but CI does
lib/test/matchers.hpp:49:25: warning: The struct 'ApproxRange' defines member function with name 'from' also defined in its parent class 'SimilarRange < float >'. [duplInheritedMember]
static SimilarRange from(const std::vector< U >& ) = delete;
^
lib/test/matchers.hpp:31:25: note: Parent function 'SimilarRange < float >::from'
static SimilarRange from(const std::vector< U >& xs) {
^
lib/test/matchers.hpp:49:25: note: Derived function 'ApproxRange::from'
static SimilarRange from(const std::vector< U >& ) = delete;
This one must be suppressed, from what I see
// cppcheck-suppress duplInheritedMember
static SimilarRange from(const std::vector< U >& ) = delete;
lib/test/segy.cpp:1579:5: warning: Member variable 'int24_base::bytes' is not initialized in the constructor. [uninitMemberVar]
int24_base() = default;
Need to explicitly initialize all to zero
int24_base() : bytes{0, 0, 0} {}
lib/test/segy.cpp:1587:28: style: C-style pointer casting [cstyleCast]
this->bytes[0] = ((const char*)&x)[0];
I think that can be fixed with
#if HOST_LSB
std::memcpy(&this->bytes[0], &x, 2);
this->bytes[2] = sign;
#else
this->bytes[0] = sign;
std::memcpy(&this->bytes[1], &x, 2);
#endif
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.
So do you want to enable cppcheck for tests here or not?
I am fine with both, it is just if you want to use them locally and we won't have them on CI, you might get errors after someone else merges their PR.
Adding exception to the cppcheck issues that are flagged in the existing codebase. In this way it is easier to monitor comming changes.
007c75b
to
b500a83
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.
Updated analyzers workflow as suggested.
Added code suggestions to remove mac cpp-checks.
The objective is to run cppcheck during rebase testing. Adding suppress comments such that the codebase can pass without error or warning flags being raised.