[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/2] check: allow running in parallel
From: |
Mike Frysinger |
Subject: |
[PATCH 2/2] check: allow running in parallel |
Date: |
Sat, 10 Nov 2012 01:04:25 -0500 |
Considering both tests are slow, running them in parallel speeds things
up a bit. Handy considering most devs run multicore systems nowadays.
Signed-off-by: Mike Frysinger <address@hidden>
---
ChangeLog | 5 +++++
Makefile | 9 +++++++--
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 41dac2b..fbb0f9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2012-11-10 Mike Frysinger <address@hidden>
+ * Makefile (check_guess, check_sub): New targets.
+ (check): Depends on check_guess and check_sub and delete commands.
+
+2012-11-10 Mike Frysinger <address@hidden>
+
* config.sub (arm): Handle armv6/armv7/armv8 targets.
* testsuite/config-sub.data: Add test cases.
diff --git a/Makefile b/Makefile
index 9a57952..498e25b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,9 @@
all:
-check:
- cd testsuite && (sh config-guess.sh; sh config-sub.sh) && rm uname
+check_guess:
+ cd testsuite && sh config-guess.sh && rm uname
+
+check_sub:
+ cd testsuite && sh config-sub.sh
+
+check: check_guess check_sub
--
1.7.12.4