Update tests/hello test-case layout (cleanup)
[lttng-ust.git] / tests / hello / hello.c
index 469561cc5641462dbb2066ff245939b9a14bb9f9..9cbe149bc7465fc09b27b5b36ad4ea5bcbff1d7b 100644 (file)
@@ -25,6 +25,7 @@
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <signal.h>
+#include <string.h>
 
 #include "ust_tests_hello.h"
 
@@ -64,6 +65,9 @@ int main(int argc, char **argv)
 {
        int i;
        long values[] = { 1, 2, 3 };
+       char text[10] = "test";
+       double dbl = 2.0;
+       float flt = 2222.0;
 
        init_int_handler();
 
@@ -72,7 +76,8 @@ int main(int argc, char **argv)
        sleep(1);
 
        for (i = 0; i < 50; i++) {
-               tracepoint(ust_tests_hello_tptest, i, values);
+               tracepoint(ust_tests_hello_tptest, i, values,
+                          text, strlen(text), dbl, flt);
                usleep(100000);
        }
        return 0;
This page took 0.023682 seconds and 4 git commands to generate.