[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1426693913-5738-1-git-send-email-john.stultz@linaro.org>
Date: Wed, 18 Mar 2015 08:51:53 -0700
From: John Stultz <john.stultz@...aro.org>
To: lkml <linux-kernel@...r.kernel.org>
Cc: John Stultz <john.stultz@...aro.org>,
Shuah Khan <shuahkh@....samsung.com>,
Prarit Bhargava <prarit@...hat.com>,
Thomas Gleixner <tglx@...utronix.de>,
Richard Cochran <richardcochran@...il.com>
Subject: [PATCH] kselftest/timers: Set default threadtest values to simplify execution scripts
In order to keep the kselftest Makefiles simpler, set the threadtest
default values to the ones used in standard run_tests
Cc: Shuah Khan <shuahkh@....samsung.com>
Cc: Prarit Bhargava <prarit@...hat.com>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: Richard Cochran <richardcochran@...il.com>
Signed-off-by: John Stultz <john.stultz@...aro.org>
---
tools/testing/selftests/timers/threadtest.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/tools/testing/selftests/timers/threadtest.c b/tools/testing/selftests/timers/threadtest.c
index facd889..e632e11 100644
--- a/tools/testing/selftests/timers/threadtest.c
+++ b/tools/testing/selftests/timers/threadtest.c
@@ -126,11 +126,13 @@ void *independent_thread(void *arg)
return NULL;
}
+#define DEFAULT_THREAD_COUNT 8
+#define DEFAULT_RUNTIME 30
int main(int argc, char **argv)
{
- int thread_count = 1, i;
- time_t start, now, runtime = 60;
+ int thread_count, i;
+ time_t start, now, runtime;
char buf[255];
pthread_t pth[MAX_THREADS];
int opt;
@@ -138,6 +140,8 @@ int main(int argc, char **argv)
int ret = 0;
void *(*thread)(void *) = shared_thread;
+ thread_count = DEFAULT_THREAD_COUNT;
+ runtime = DEFAULT_RUNTIME;
/* Process arguments */
while ((opt = getopt(argc, argv, "t:n:i")) != -1) {
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists