Skip to content
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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

yngve793
Copy link
Contributor

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.

Copy link
Contributor

@achaikou achaikou left a 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?

@yngve793 yngve793 force-pushed the fix/ccpcheck_old_code branch from e4a0ffe to e75ab51 Compare March 26, 2025 14:06
Copy link
Contributor Author

@yngve793 yngve793 left a 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.

@yngve793 yngve793 force-pushed the fix/ccpcheck_old_code branch 2 times, most recently from 9ed7f65 to 007c75b Compare March 27, 2025 14:17
Copy link
Contributor

@achaikou achaikou left a 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!

cmake -S . -B build \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON \
-DBUILD_PYTHON=OFF \
-DBUILD_TESTING=OFF
Copy link
Contributor

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

Copy link
Contributor

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.
@yngve793 yngve793 force-pushed the fix/ccpcheck_old_code branch from 007c75b to b500a83 Compare March 28, 2025 11:11
Copy link
Contributor Author

@yngve793 yngve793 left a 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants