Skip to content

Commit ea13050

Browse files
committed
hack backward-hpp into macos
1 parent f57b41b commit ea13050

File tree

2 files changed

+4502
-9
lines changed

2 files changed

+4502
-9
lines changed

trantor/unittests/HashUnittest.cc

+6-9
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ using namespace trantor;
88
using namespace trantor::utils;
99

1010
#ifdef __APPLE__
11+
#include "backward.hpp"
1112
#include <execinfo.h>
13+
14+
namespace backward
15+
{
16+
backward::SignalHandling sh;
17+
}
1218
#endif
1319

1420
TEST(Hash, MD5)
@@ -57,15 +63,6 @@ TEST(Hash, BLAKE2b)
5763

5864
int main(int argc, char **argv)
5965
{
60-
#ifdef __APPLE__
61-
signal(SIGILL, [](int) {
62-
void *array[128];
63-
size_t size;
64-
size = backtrace(array, 128);
65-
backtrace_symbols_fd(array, size, STDERR_FILENO);
66-
exit(-1);
67-
});
68-
#endif
6966
testing::InitGoogleTest(&argc, argv);
7067
return RUN_ALL_TESTS();
7168
}

0 commit comments

Comments
 (0)