fix: relayd: unaligned access in trace_chunk_registry_ht_key_hash
[lttng-tools.git] / tests / unit / test_utils_compat_pthread.cpp
index 2ce437372968ed63063956a417f2d8f294d468ec..db39d49b7ce5544d8d995df582c4dc87ed54c678 100644 (file)
@@ -5,15 +5,15 @@
  *
  */
 
+#include "common/compat/pthread.hpp"
+
 #include <stdio.h>
 #include <string.h>
-#include "common/compat/pthread.h"
-
 #include <tap/tap.h>
 
 #define TEST_NAME_PROPER_LEN 16
 
-int main(void)
+int main()
 {
        int ret;
        char name1[TEST_NAME_PROPER_LEN];
@@ -44,8 +44,10 @@ int main(void)
        /* Get the thread name again, should be the one we set */
        ret = lttng_pthread_getname_np(name1, TEST_NAME_PROPER_LEN);
        ok(ret == 0, "Get a short thread name: '%s'", name1);
-       ok(strcmp(short_name, name1) == 0, "Compare the short thread name: '%s' == '%s'", short_name, name1);
-
+       ok(strcmp(short_name, name1) == 0,
+          "Compare the short thread name: '%s' == '%s'",
+          short_name,
+          name1);
 
        /* Set a thread name of 16 bytes */
        ret = lttng_pthread_setname_np(long_name);
@@ -54,7 +56,10 @@ int main(void)
        /* Get the thread name again, should be the one we set */
        ret = lttng_pthread_getname_np(name1, TEST_NAME_PROPER_LEN);
        ok(ret == 0, "Get a long thread name: '%s'", name1);
-       ok(strncmp(long_name, name1, TEST_NAME_PROPER_LEN - 1) == 0, "Compare the long thread name: '%s' == '%s'", long_name, name1);
+       ok(strncmp(long_name, name1, TEST_NAME_PROPER_LEN - 1) == 0,
+          "Compare the long thread name: '%s' == '%s'",
+          long_name,
+          name1);
 
        return exit_status();
 }
This page took 0.022945 seconds and 4 git commands to generate.