From ff927baefe5c1e382cd4779219ad985a03eb5a6c Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 10 Nov 2011 13:17:16 -0500 Subject: [PATCH] Add delay parameter to hello test program Signed-off-by: Mathieu Desnoyers --- tests/hello/hello.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/hello/hello.c b/tests/hello/hello.c index cc23a577..68fca7a7 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -70,19 +70,24 @@ int main(int argc, char **argv) char text[10] = "test"; double dbl = 2.0; float flt = 2222.0; + int delay = 0; init_int_handler(); - printf("Hello, World!\n"); + if (argc == 2) + delay = atoi(argv[1]); - sleep(10); + fprintf(stderr, "Hello, World!\n"); - //for (i = 0; i < 50; i++) { + sleep(delay); + + fprintf(stderr, "Tracing... "); for (i = 0; i < 1000000; i++) { netint = htonl(i); tracepoint(ust_tests_hello, tptest, i, netint, values, text, strlen(text), dbl, flt); //usleep(100000); } + fprintf(stderr, " done.\n"); return 0; } -- 2.34.1