aboutsummaryrefslogtreecommitdiff
path: root/ccan/Makefile.check
diff options
context:
space:
mode:
authorOliver O'Halloran <oohall@gmail.com>2020-06-12 12:24:49 +1000
committerOliver O'Halloran <oohall@gmail.com>2020-06-17 21:18:45 +1000
commit028442e6573eabbc2ebc6499f92fcf5ace856553 (patch)
tree00342fd86d7d2be71d343e5b6d468aa15473e844 /ccan/Makefile.check
parent09b4be2c46214746149f9f11f235a3ae0c6b16cc (diff)
downloadskiboot-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 'ccan/Makefile.check')
-rw-r--r--ccan/Makefile.check5
1 files changed, 2 insertions, 3 deletions
diff --git a/ccan/Makefile.check b/ccan/Makefile.check
index a596766..e9c2397 100644
--- a/ccan/Makefile.check
+++ b/ccan/Makefile.check
@@ -4,12 +4,11 @@ LCOV_EXCLUDE += $(CCAN_TEST_SRC) ccan/list/test/helper.c
CCAN_TEST := $(CCAN_TEST_SRC:%.c=%)
-
-.PHONY: $(CCAN_TEST:%=%-gcov-run) ccan-check
+.PHONY: ccan-check
ccan-check: $(CCAN_TEST:%=%-check)
-check: ccan-check $(CCAN_TEST:%=%-gcov-run)
+check: ccan-check
.PHONY: ccan-coverage