Fix test, also do not read from stack of another thread
[folly.git] / folly / experimental / symbolizer / test / SignalHandlerTest.cpp
1 /*
2  * Copyright 2013 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 "folly/experimental/symbolizer/test/SignalHandlerTest.h"
18 #include "folly/experimental/symbolizer/SignalHandler.h"
19
20 #include <gtest/gtest.h>
21
22 #include "folly/FileUtil.h"
23 #include "folly/Range.h"
24
25 namespace folly { namespace symbolizer { namespace test {
26
27 namespace {
28
29 void print(StringPiece sp) {
30   writeFull(STDERR_FILENO, sp.data(), sp.size());
31 }
32
33
34 void callback1() {
35   print("Callback1\n");
36 }
37
38 void callback2() {
39   print("Callback2\n");
40 }
41
42 }  // namespace
43
44 TEST(SignalHandler, Simple) {
45   addFatalSignalCallback(callback1);
46   addFatalSignalCallback(callback2);
47   installFatalSignalHandler();
48   installFatalSignalCallbacks();
49
50   EXPECT_DEATH(
51       failHard(),
52       "^\\*\\*\\* Aborted at [0-9]+ \\(Unix time, try 'date -d @[0-9]+'\\) "
53       "\\*\\*\\*\n"
54       "\\*\\*\\* Signal 11 \\(SIGSEGV\\) \\(0x2a\\) received by PID [0-9]+ "
55       "\\(TID 0x[0-9a-f]+\\), stack trace: \\*\\*\\*\n"
56       ".*\n"
57       "    @ [0-9a-f]+ folly::symbolizer::test::SignalHandler_Simple_Test"
58       "::TestBody\\(\\)\n"
59       ".*\n"
60       "    @ [0-9a-f]+ main\n"
61       ".*\n"
62       "Callback1\n"
63       "Callback2\n"
64       );
65 }
66
67
68 }}}  // namespaces