Force usage of assert() condition when NDEBUG is defined
[lttng-tools.git] / tests / utils / testapp / gen-ust-events / gen-ust-events.c
index 51e53a6203781c5004aba5242c53746a02ec3638..cf8819977dc79d83596b1da1d31a746d6b271cb9 100644 (file)
@@ -7,7 +7,6 @@
 
 #define _LGPL_SOURCE
 #include <getopt.h>
-#include <assert.h>
 #include <arpa/inet.h>
 #include <fcntl.h>
 #include <stdarg.h>
@@ -38,6 +37,7 @@ static struct option long_options[] =
        {"sync-before-last-event-touch", required_argument, 0, 'c'},
        {"sync-before-exit", required_argument, 0, 'd'},
        {"sync-before-exit-touch", required_argument, 0, 'e'},
+       {"emit-end-event", no_argument, 0, 'f'},
        {0, 0, 0, 0}
 };
 
@@ -48,8 +48,10 @@ int main(int argc, char **argv)
        int option;
        long values[] = { 1, 2, 3 };
        char text[10] = "test";
+       char escape[10] = "\\*";
        double dbl = 2.0;
        float flt = 2222.0;
+       uint32_t net_values[] = { 1, 2, 3 };
        int nr_iter = 100, ret = 0, first_event_file_created = 0;
        useconds_t nr_usec = 0;
        char *after_first_event_file_path = NULL;
@@ -63,9 +65,15 @@ int main(int argc, char **argv)
        char *before_exit_file_path_touch = NULL;
        /* Wait on file before exiting */
        char *before_exit_file_path = NULL;
+       /* Emit an end event */
+       bool emit_end_event = false;
 
-       while ((option = getopt_long(argc, argv, "i:w:a:b:c:d:",
-                       long_options, &option_index)) != -1) {
+       for (i = 0; i < 3; i++) {
+               net_values[i] = htonl(net_values[i]);
+       }
+
+       while ((option = getopt_long(argc, argv, "i:w:a:b:c:d:e:f",
+                               long_options, &option_index)) != -1) {
                switch (option) {
                case 'a':
                        after_first_event_file_path = strdup(optarg);
@@ -82,6 +90,9 @@ int main(int argc, char **argv)
                case 'e':
                        before_exit_file_path_touch = strdup(optarg);
                        break;
+               case 'f':
+                       emit_end_event = true;
+                       break;
                case 'i':
                        nr_iter = atoi(optarg);
                        break;
@@ -90,7 +101,6 @@ int main(int argc, char **argv)
                        break;
                case '?':
                        /* getopt_long already printed an error message. */
-                       break;
                default:
                        ret = -1;
                        goto end;
@@ -142,7 +152,7 @@ int main(int argc, char **argv)
                }
                netint = htonl(i);
                tracepoint(tp, tptest, i, netint, values, text,
-                       strlen(text), dbl, flt);
+                       strlen(text), escape, net_values, dbl, flt);
 
                /*
                 * First loop we create the file if asked to indicate
@@ -169,6 +179,10 @@ int main(int argc, char **argv)
                }
        }
 
+       if (emit_end_event) {
+               tracepoint(tp, end);
+       }
+
        if (before_exit_file_path_touch) {
                ret = create_file(before_exit_file_path_touch);
                if (ret != 0) {
This page took 0.025075 seconds and 4 git commands to generate.