X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Funit%2Ftest_utils_compat_pthread.cpp;h=db39d49b7ce5544d8d995df582c4dc87ed54c678;hb=eb2dca3bdbb5f9d1fe8dc4c5d83951fe99ea0b29;hp=55e584b8bc9b34745a074e3f73732c1f2e3c5259;hpb=c9e313bc594f40a86eed237dce222c0fc99c957f;p=lttng-tools.git diff --git a/tests/unit/test_utils_compat_pthread.cpp b/tests/unit/test_utils_compat_pthread.cpp index 55e584b8b..db39d49b7 100644 --- a/tests/unit/test_utils_compat_pthread.cpp +++ b/tests/unit/test_utils_compat_pthread.cpp @@ -5,15 +5,15 @@ * */ -#include -#include #include "common/compat/pthread.hpp" +#include +#include #include #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(); }