From patchwork Sat Jan 26 11:45:11 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [for-1.4,2/6] tests: Fix gcov report for test-iov Date: Sat, 26 Jan 2013 01:45:11 -0000 From: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 215901 Message-Id: <1359200715-27222-3-git-send-email-afaerber@suse.de> To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, Paolo Bonzini , =?UTF-8?q?Andreas=20F=C3=A4rber?= Commit baacf04799ace72a9c735dd9306a1ceaf305e7cf moved iov.c to util/ subdirectory but forgot to update tests/Makefile, resulting in: Gcov report for iov.c: ./iov.gcno:cannot open graph file Fix this by supplying the new path. Cc: Paolo Bonzini Signed-off-by: Andreas Färber --- tests/Makefile | 2 +- 1 Datei geändert, 1 Zeile hinzugefügt(+), 1 Zeile entfernt(-) diff --git a/tests/Makefile b/tests/Makefile index db04607..d2e326f 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -39,7 +39,7 @@ endif endif check-unit-y += tests/test-visitor-serialization$(EXESUF) check-unit-y += tests/test-iov$(EXESUF) -gcov-files-test-iov-y = iov.c +gcov-files-test-iov-y = util/iov.c check-unit-y += tests/test-aio$(EXESUF) gcov-files-test-aio-$(CONFIG_WIN32) = aio-win32.c gcov-files-test-aio-$(CONFIG_POSIX) = aio-posix.c