| Submitter | Eduardo Habkost |
|---|---|
| Date | July 5, 2012, 1:30 p.m. |
| Message ID | <1341495003-23392-1-git-send-email-ehabkost@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/169169/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/tests/Makefile b/tests/Makefile index d66ab19..b3f7494 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -143,3 +143,5 @@ check-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS)) check-unit: $(patsubst %,check-%, $(check-unit-y)) check-block: $(patsubst %,check-%, $(check-block-y)) check: check-unit check-qtest + +-include $(wildcard tests/*.d)
Otherwise 'make check' won't recompile files that need to be recompiled because of header changes. To reproduce the bug, run: $ make check # succeeds $ echo B0RKED > hw/mc146818rtc_regs.h $ make check # is supposed to try to rebuild tests/rtc-test.o and fail Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> --- tests/Makefile | 2 ++ 1 file changed, 2 insertions(+)