diff options
author | Oliver O'Halloran <oohall@gmail.com> | 2020-06-12 12:24:49 +1000 |
---|---|---|
committer | Oliver O'Halloran <oohall@gmail.com> | 2020-06-17 21:18:45 +1000 |
commit | 028442e6573eabbc2ebc6499f92fcf5ace856553 (patch) | |
tree | 00342fd86d7d2be71d343e5b6d468aa15473e844 /hw/ipmi | |
parent | 09b4be2c46214746149f9f11f235a3ae0c6b16cc (diff) | |
download | skiboot-028442e6573eabbc2ebc6499f92fcf5ace856553.zip skiboot-028442e6573eabbc2ebc6499f92fcf5ace856553.tar.gz skiboot-028442e6573eabbc2ebc6499f92fcf5ace856553.tar.bz2 |
test: Do gcov builds as a seperate pass
We only really use the gcov output when doing the coverage report as a
part of the "docs" CI builds. It's useful for development to just run
the unit tests so make sure the "check" and "coverage" targets are
seperate.
This also speeds up our CI builds since those jobs are already doing a
seperate GCOV pass so building and running the GCOV binaries during the
check pass is redundant.
Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'hw/ipmi')
-rw-r--r-- | hw/ipmi/test/Makefile.check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ipmi/test/Makefile.check b/hw/ipmi/test/Makefile.check index c3d6359..ceed1ed 100644 --- a/hw/ipmi/test/Makefile.check +++ b/hw/ipmi/test/Makefile.check @@ -4,7 +4,7 @@ IPMI_TEST := hw/ipmi/test/run-fru LCOV_EXCLUDE += $(IPMI_TEST:%=%.c) .PHONY : hw-ipmi-check hw-ipmi-coverage -hw-ipmi-check: $(IPMI_TEST:%=%-check) $(IPMI_TEST:%=%-gcov-run) +hw-ipmi-check: $(IPMI_TEST:%=%-check) hw-ipmi-coverage: $(IPMI_TEST:%=%-gcov-run) check: hw-ipmi-check |