1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

tests: Add llvm-cov option and run target for code coverage

Code coverage can be requested with -Dllvm_cov and run with ninja
llvm-cov-tests or llvm-cov-cli.

BUG=b:187647884
BRANCH=None
TEST=meson test; ninja llvm-cov-tests
TEST=ran test_build.sh with coverage enabled
TEST=jenkins ran test_build.sh with coverage disabled

Change-Id: Id6c73bff46e7b88d425956a80def97082b201f56
Signed-off-by: Evan Benn <evanbenn@chromium.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/69268
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
This commit is contained in:
Evan Benn
2022-11-07 14:50:35 +11:00
committed by Anastasia Klimchuk
parent 80408ceafc
commit 048aab6d66
5 changed files with 27 additions and 9 deletions

View File

@ -121,7 +121,11 @@ flashrom_tests = executable('flashrom_unit_tests',
'-U_FORTIFY_SOURCE',
],
export_dynamic : true,
link_args : mocks,
link_args : mocks + link_args,
dependencies : [cmocka_dep, flashrom_test_dep],
)
test('cmocka test flashrom', flashrom_tests)
if get_option('llvm_cov').enabled()
run_target('llvm-cov-tests', command : ['../scripts/llvm-cov', flashrom_tests])
endif