aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Richter <erichte@linux.ibm.com>2019-09-03 16:48:16 -0500
committerOliver O'Halloran <oohall@gmail.com>2019-09-06 16:57:53 +1000
commite023d6b9095073f0105243de862fd8d408d842d5 (patch)
treeaf1b904d29eec4b716b202c0f9fe56d55c749601
parent3f5ecfb385efda41e57a144d18a3a2fbca255d2c (diff)
downloadskiboot-e023d6b9095073f0105243de862fd8d408d842d5.zip
skiboot-e023d6b9095073f0105243de862fd8d408d842d5.tar.gz
skiboot-e023d6b9095073f0105243de862fd8d408d842d5.tar.bz2
hw/test: include -gcov binaries in clean target
This patch fixes an oversight in the hw-clean make target that removes the .gcno object, but does not remove the -gcovr test binary. Therefore, the .gcno object is not recreated on a subsequent coverage-report build, which causes an error that fails the build. Signed-off-by: Eric Richter <erichte@linux.ibm.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
-rw-r--r--hw/test/Makefile.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/test/Makefile.check b/hw/test/Makefile.check
index 1681027..f9f233c 100644
--- a/hw/test/Makefile.check
+++ b/hw/test/Makefile.check
@@ -26,4 +26,4 @@ $(HW_TEST:%=%-gcov): %-gcov : %.c %
clean: hw-clean
hw-clean:
- $(RM) -f hw/test/*.[od] $(HW_TEST)
+ $(RM) -f hw/test/*.[od] $(HW_TEST) $(HW_TEST:%=%-gcov)