Specialize and implement setThreadName only on some platforms
[folly.git] / folly / test / ThreadNameTest.cpp
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <thread>
18 #include <folly/Baton.h>
19 #include <folly/ThreadName.h>
20 #include <gtest/gtest.h>
21
22 using namespace std;
23 using namespace folly;
24
25 TEST(ThreadName, setThreadName_self) {
26   thread th([] {
27       EXPECT_TRUE(setThreadName("rockin-thread"));
28   });
29   SCOPE_EXIT { th.join(); };
30 }
31
32 TEST(ThreadName, setThreadName_other_pthread) {
33   Baton<> handle_set;
34   Baton<> let_thread_end;
35   pthread_t handle;
36   thread th([&] {
37       handle = pthread_self();
38       handle_set.post();
39       let_thread_end.wait();
40   });
41   SCOPE_EXIT { th.join(); };
42   handle_set.wait();
43   SCOPE_EXIT { let_thread_end.post(); };
44   EXPECT_TRUE(setThreadName(handle, "rockin-thread"));
45 }
46
47 TEST(ThreadName, setThreadName_other_native) {
48   Baton<> let_thread_end;
49   thread th([&] {
50       let_thread_end.wait();
51   });
52   SCOPE_EXIT { th.join(); };
53   SCOPE_EXIT { let_thread_end.post(); };
54   EXPECT_TRUE(setThreadName(th.native_handle(), "rockin-thread"));
55 }