From patchwork Sat Jan 26 11:45:11 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 215901 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C0DBE2C0096 for ; Sat, 26 Jan 2013 23:21:39 +1100 (EST) Received: from localhost ([::1]:45343 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz4lI-0008Oy-BS for incoming@patchwork.ozlabs.org; Sat, 26 Jan 2013 07:21:32 -0500 Received: from eggs.gnu.org ([208.118.235.92]:50904) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz4lA-0008Og-Ap for qemu-devel@nongnu.org; Sat, 26 Jan 2013 07:21:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tz4l4-0006ci-Ga for qemu-devel@nongnu.org; Sat, 26 Jan 2013 07:21:24 -0500 Received: from cantor2.suse.de ([195.135.220.15]:43975 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz4Cd-0005AM-Dn for qemu-devel@nongnu.org; Sat, 26 Jan 2013 06:45:43 -0500 Received: from relay2.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id D7A53A52A2; Sat, 26 Jan 2013 12:45:42 +0100 (CET) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Sat, 26 Jan 2013 12:45:11 +0100 Message-Id: <1359200715-27222-3-git-send-email-afaerber@suse.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1359200715-27222-1-git-send-email-afaerber@suse.de> References: <1359200715-27222-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 195.135.220.15 Cc: blauwirbel@gmail.com, Paolo Bonzini , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH for-1.4 2/6] tests: Fix gcov report for test-iov X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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