From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50897) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0qOp-0004h4-Rm for qemu-devel@nongnu.org; Mon, 23 Nov 2015 07:39:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a0qOn-0005k4-NG for qemu-devel@nongnu.org; Mon, 23 Nov 2015 07:39:15 -0500 Received: from mx1.redhat.com ([209.132.183.28]:36769) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0qOn-0005jb-Ii for qemu-devel@nongnu.org; Mon, 23 Nov 2015 07:39:13 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 4A931800A1 for ; Mon, 23 Nov 2015 12:39:13 +0000 (UTC) From: Kevin Wolf Date: Mon, 23 Nov 2015 13:39:05 +0100 Message-Id: <1448282346-11626-2-git-send-email-kwolf@redhat.com> In-Reply-To: <1448282346-11626-1-git-send-email-kwolf@redhat.com> References: <1448282346-11626-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 1/2] tests/Makefile: Add more dependencies for test-timed-average List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, pbonzini@redhat.com, famz@redhat.com, stefanha@redhat.com 'make check' failed to compile the test case for mingw because of undefined references. Pull in a few more dependencies so that it builds. Signed-off-by: Kevin Wolf --- tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index b937984..47fe5d5 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -416,7 +416,8 @@ tests/test-vmstate$(EXESUF): tests/test-vmstate.o \ $(test-qom-obj-y) tests/test-timed-average$(EXESUF): tests/test-timed-average.o qemu-timer.o \ libqemuutil.a stubs/clock-warp.o stubs/cpu-get-icount.o \ - stubs/notify-event.o stubs/replay.o + stubs/notify-event.o stubs/replay.o stubs/mon-is-qmp.o stubs/fd-register.o \ + stubs/mon-printf.o tests/test-qapi-types.c tests/test-qapi-types.h :\ $(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) -- 1.8.3.1