qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL v5 02/12] tests: lm32: new rule for single test cases


From: Michael Walle
Subject: [Qemu-devel] [PULL v5 02/12] tests: lm32: new rule for single test cases
Date: Tue, 4 Feb 2014 19:58:24 +0100

Introduce new target "check_%" to run individual test caes, eg.
  make check_mmu

Signed-off-by: Michael Walle <address@hidden>
Reviewed-by: Peter Maydell <address@hidden>
---
 tests/tcg/lm32/Makefile |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/tcg/lm32/Makefile b/tests/tcg/lm32/Makefile
index 9a00ef7..8e5d405 100644
--- a/tests/tcg/lm32/Makefile
+++ b/tests/tcg/lm32/Makefile
@@ -96,10 +96,10 @@ all: build
 
 build: $(CRT) $(TESTCASES)
 
-check: $(CRT) $(SYS) $(TESTCASES)
-       @for case in $(TESTCASES); do \
-               $(SIM) $(SIMFLAGS) ./$$case; \
-       done
+check: $(TESTCASES:test_%.tst=check_%)
+
+check_%: test_%.tst $(CRT) $(SYS)
+       $(SIM) $(SIMFLAGS) $<
 
 clean:
        $(RM) -fr $(TESTCASES) $(CRT)
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]