test "hello": add boolean test
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 5 Jun 2012 17:15:52 +0000 (13:15 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 5 Jun 2012 17:18:21 +0000 (13:18 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
tests/hello/hello.c
tests/hello/ust_tests_hello.h

index 584d3f7b9f1b107d2d8a4986164127c6c2c45863..0c18c01a95a8e8ed9adad55b21c661c92a1c937e 100644 (file)
@@ -28,6 +28,7 @@
 #include <string.h>
 #include <arpa/inet.h>
 #include <stdlib.h>
+#include <stdbool.h>
 
 #define TRACEPOINT_DEFINE
 #include "ust_tests_hello.h"
@@ -73,6 +74,7 @@ int main(int argc, char **argv)
        double dbl = 2.0;
        float flt = 2222.0;
        int delay = 0;
+       bool mybool = 123;      /* should print "1" */
 
        init_int_handler();
 
@@ -87,7 +89,7 @@ int main(int argc, char **argv)
        for (i = 0; i < 1000000; i++) {
                netint = htonl(i);
                tracepoint(ust_tests_hello, tptest, i, netint, values,
-                          text, strlen(text), dbl, flt);
+                          text, strlen(text), dbl, flt, mybool);
                //usleep(100000);
        }
        fprintf(stderr, " done.\n");
index 8a4063f60b929ffbc0a3e0f613f4b95afd36a9d2..b06dea00138dc5b62619814741c56b85d3b9890e 100644 (file)
@@ -23,11 +23,13 @@ extern "C" {
  */
 
 #include <lttng/tracepoint.h>
+#include <stdbool.h>
 
 TRACEPOINT_EVENT(ust_tests_hello, tptest,
        TP_ARGS(int, anint, int, netint, long *, values,
-                char *, text, size_t, textlen,
-                double, doublearg, float, floatarg),
+               char *, text, size_t, textlen,
+               double, doublearg, float, floatarg,
+               bool, boolarg),
        TP_FIELDS(
                ctf_integer(int, intfield, anint)
                ctf_integer_hex(int, intfield2, anint)
@@ -43,6 +45,7 @@ TRACEPOINT_EVENT(ust_tests_hello, tptest,
                ctf_string(stringfield, text)
                ctf_float(float, floatfield, floatarg)
                ctf_float(double, doublefield, doublearg)
+               ctf_integer(bool, boolfield, boolarg)
        )
 )
 
This page took 0.025124 seconds and 4 git commands to generate.