Run clang-format on the whole tree
[lttng-tools.git] / tests / unit / test_utils_compat_pthread.cpp
index 55e584b8bc9b34745a074e3f73732c1f2e3c5259..3adfd7ea7137815d921d2e99b88a756578c1b3da 100644 (file)
@@ -5,10 +5,10 @@
  *
  */
 
-#include <stdio.h>
-#include <string.h>
 #include "common/compat/pthread.hpp"
 
+#include <stdio.h>
+#include <string.h>
 #include <tap/tap.h>
 
 #define TEST_NAME_PROPER_LEN 16
@@ -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.023166 seconds and 4 git commands to generate.