test "hello": add boolean test
[lttng-ust.git] / tests / hello / hello.c
index 661ed40862dcb3ea5811a8d455703ad042f40566..0c18c01a95a8e8ed9adad55b21c661c92a1c937e 100644 (file)
 #include <signal.h>
 #include <string.h>
 #include <arpa/inet.h>
+#include <stdlib.h>
+#include <stdbool.h>
 
+#define TRACEPOINT_DEFINE
 #include "ust_tests_hello.h"
 
 void inthandler(int sig)
 {
        printf("in SIGUSR1 handler\n");
-       tracepoint(ust_tests_hello_tptest_sighandler);
+       tracepoint(ust_tests_hellotptest_sighandler);
 }
 
 int init_int_handler(void)
@@ -70,19 +73,25 @@ int main(int argc, char **argv)
        char text[10] = "test";
        double dbl = 2.0;
        float flt = 2222.0;
+       int delay = 0;
+       bool mybool = 123;      /* should print "1" */
 
        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);
+               tracepoint(ust_tests_hellotptest, i, netint, values,
+                          text, strlen(text), dbl, flt, mybool);
                //usleep(100000);
        }
+       fprintf(stderr, " done.\n");
        return 0;
 }
This page took 0.03875 seconds and 4 git commands to generate.