From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43841) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVl2N-0006xe-MU for qemu-devel@nongnu.org; Mon, 14 Oct 2013 12:30:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VVl2D-0002bk-0Q for qemu-devel@nongnu.org; Mon, 14 Oct 2013 12:30:31 -0400 Received: from ssl.serverraum.org ([88.198.40.39]:58485) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVl2C-0002bC-P5 for qemu-devel@nongnu.org; Mon, 14 Oct 2013 12:30:20 -0400 From: Michael Walle Date: Mon, 14 Oct 2013 18:29:26 +0200 Message-Id: <1381768175-13520-3-git-send-email-michael@walle.cc> In-Reply-To: <1381768175-13520-1-git-send-email-michael@walle.cc> References: <1381768175-13520-1-git-send-email-michael@walle.cc> Subject: [Qemu-devel] [PULL v2 02/11] tests: lm32: new rule for single test cases List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Michael Walle Introduce new target "check_%" to run indiviudal test caes, eg. make check_mmu Signed-off-by: Michael Walle --- tests/tcg/lm32/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/tcg/lm32/Makefile b/tests/tcg/lm32/Makefile index 9a00ef7..19e0664 100644 --- a/tests/tcg/lm32/Makefile +++ b/tests/tcg/lm32/Makefile @@ -101,5 +101,8 @@ check: $(CRT) $(SYS) $(TESTCASES) $(SIM) $(SIMFLAGS) ./$$case; \ done +check_%: test_%.tst $(CRT) $(SYS) + $(SIM) $(SIMFLAGS) $< + clean: $(RM) -fr $(TESTCASES) $(CRT) -- 1.7.10.4