Project

General

Profile

Actions

Linting » History » Revision 5

« Previous | Revision 5/12 (diff) | Next »
osmith, 09/06/2021 09:36 AM
proper user name


Linting

Patches submitted to Gerrit are automatically linted to ensure patches follow our coding standards and to catch common spelling errors. Jenkins runs checkpatch.pl from the Linux kernel (with an Osmocom specific configuration) against the diff of the current patch.

Run locally

Go to the directory above your Osmocom sources, then run the following:

$ git clone https://git.osmocom.org/osmo-ci
$ cd libosmocore
$ ../osmo-ci/lint/lint_diff.sh

Pre-commit hook

The linting script is very fast, it makes sense to configure it locally as pre-commit hook. Then it will run whenever attempting to git commit.

After cloning osmo-ci.git (see above), go to the directory above your Osmocom sources again and run the following. Replace libosmocore with any checked out Osmocom project.

$ ln -sv $PWD/osmo-ci/lint/lint_diff.sh libosmocore/.git/hooks/pre-commit

Osmocom specific configuration

Find the Osmocom specific configuration in osmo-ci/lint/checkpatch/checkpatch_osmo.sh.

Testing

Run osmo-ci/lint/lint_all.sh in a git repository to run the script against all files in that repository and to report the total amount of errors. It is also possible to run only a specific check of checkpatch.pl by passing it as argument. For example:

$ cd libosmocore
$ ../osmo-ci/lint/lint_all.sh CODE_INDENT

What if errors from the linter don't make sense?

If it's trivial to fix, consider submitting a patch against osmo-ci.git to fix it yourself. Otherwise create an issue and assign it to osmith.

The linter job runs separately from the build verification job. If building a patch succeeds, but the linter fails on it, jenkins will leave a comment like the following in the gerrit review:

Build Failed 

https://jenkins.osmocom.org/jenkins/job/gerrit-osmo-mgw/.../ : SUCCESS

https://jenkins.osmocom.org/jenkins/job/gerrit-osmo-mgw-lint/.../ : FAILURE

So from looking at this comment, it's clear that building did succeed any only linting failed. If that is the case and the linter's output isn't helpful, remove the -1 build verification vote from jenkins and add your own +1 build verification. Then it can be merged regardless of the linting errors.

See also

  • #5087
Files (0)

Updated by osmith over 2 years ago · 5 revisions

Add picture from clipboard (Maximum size: 48.8 MB)