From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55844) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1beVN1-0005w5-Uc for qemu-devel@nongnu.org; Mon, 29 Aug 2016 18:49:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1beVMs-0004U6-UB for qemu-devel@nongnu.org; Mon, 29 Aug 2016 18:49:35 -0400 Received: from mail-yb0-x242.google.com ([2607:f8b0:4002:c09::242]:34483) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1beVMs-0004U1-Q4 for qemu-devel@nongnu.org; Mon, 29 Aug 2016 18:49:26 -0400 Received: by mail-yb0-x242.google.com with SMTP id g67so46262ybi.1 for ; Mon, 29 Aug 2016 15:49:26 -0700 (PDT) From: Pranith Kumar Date: Mon, 29 Aug 2016 18:49:19 -0400 Message-Id: <20160829224920.16686-5-bobby.prani@gmail.com> In-Reply-To: <20160829224920.16686-1-bobby.prani@gmail.com> References: <20160829224920.16686-1-bobby.prani@gmail.com> Subject: [Qemu-devel] [PATCH v2 4/4] tests/tcg: Add tests-tcg hook in Makefile List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Eric Blake , Markus Armbruster , "Daniel P. Berrange" , "Michael S. Tsirkin" , Richard Henderson Cc: alex.bennee@linaro.org Signed-off-by: Pranith Kumar --- tests/Makefile.include | 1 + tests/tcg/Makefile.include | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 tests/tcg/Makefile.include diff --git a/tests/Makefile.include b/tests/Makefile.include index 14be491..141281b 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -776,3 +776,4 @@ all: $(QEMU_IOTESTS_HELPERS-y) -include $(wildcard tests/*.d) -include $(wildcard tests/libqos/*.d) +-include $(SRC_PATH)/tests/tcg/Makefile.include diff --git a/tests/tcg/Makefile.include b/tests/tcg/Makefile.include new file mode 100644 index 0000000..563a097 --- /dev/null +++ b/tests/tcg/Makefile.include @@ -0,0 +1,20 @@ +UNAME_P := $(shell uname -p) + +tests-tcg: misc + +x86_64: + cd $(SRC_PATH)/tests/tcg/i386 && make +i386: + cd $(SRC_PATH)/tests/tcg/i386 && make + +arm: + cd $(SRC_PATH)/tests/tcg/arm && make +aarch64: + cd $(SRC_PATH)/tests/tcg/arm && make + +misc: + cd $(SRC_PATH)/tests/tcg/misc && make + make $(UNAME_P) + +.PHONY: tests-tcg + -- 2.9.3