kunit: add coverage_uml.config to enable GCOV on UML
authorDaniel Latypov <dlatypov@google.com>
Mon, 27 Jun 2022 22:14:46 +0000 (22:14 +0000)
committerShuah Khan <skhan@linuxfoundation.org>
Fri, 8 Jul 2022 00:06:36 +0000 (18:06 -0600)
commit1d202d1496a0be94100d8cbc2b658dcd980a3edf
tree26acbcd65ea64fdbaa43f71623a6b7f9929ef0f5
parent8a7c6f859a20ca36a9e3ce71662de697898c9ef5
kunit: add coverage_uml.config to enable GCOV on UML

Now that kunit.py's --kunitconfig is repeatable, let's create a file to
hold the various options needed to enable coverage under UML.

This can be used like so:
$ ./tools/testing/kunit/kunit.py run \
  --kunitconfig=tools/testing/kunit/configs/all_tests_uml.config \
  --kunitconfig=tools/testing/kunit/configs/coverage_uml.config \
  --make_options=CC=/usr/bin/gcc-6

which on my system is enough to get coverage working [1].

This is still a clunky command, but far better than before.

[1] at the time of this commit, I get:
  Overall coverage rate:
    lines......: 11.6% (34112 of 295033 lines)
    functions..: 15.3% (3721 of 24368 functions)

Signed-off-by: Daniel Latypov <dlatypov@google.com>
Reviewed-by: David Gow <davidgow@google.com>
Reviewed-by: Brendan Higgins <brendanhiggins@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Documentation/dev-tools/kunit/running_tips.rst
tools/testing/kunit/configs/coverage_uml.config [new file with mode: 0644]