Fix: illegal memory access in test_create_kernel_event
[lttng-tools.git] / tests / unit / test_kernel_data.c
index 603d54cb251333e28bd37e5c62e8cc7009f2d911..eccb7d848f1558b645f777daa2a33afb56e2c4b5 100644 (file)
@@ -33,7 +33,7 @@
 #define RANDOM_STRING_LEN      11
 
 /* Number of TAP tests in this file */
-#define NUM_TESTS 10
+#define NUM_TESTS 11
 
 /* For error.h */
 int lttng_opt_quiet = 1;
@@ -135,7 +135,9 @@ static void test_create_kernel_event(void)
        struct lttng_event ev;
 
        memset(&ev, 0, sizeof(ev));
-       strncpy(ev.name, get_random_string(), LTTNG_KERNEL_SYM_NAME_LEN);
+       ok(lttng_strncpy(ev.name, get_random_string(),
+                       LTTNG_KERNEL_SYM_NAME_LEN),
+               "Validate string length");
        ev.type = LTTNG_EVENT_TRACEPOINT;
        ev.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
 
This page took 0.023566 seconds and 4 git commands to generate.