-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_symbol_backtrace.cpp
105 lines (86 loc) · 2.25 KB
/
test_symbol_backtrace.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#include "../source/h2_unit.cpp"
SUITE(backtrace)
{
Case(constructor 0)
{
h2::h2_backtrace bt;
OK(0, bt.count);
OK(0, bt.shift);
}
Case(copy constructor)
{
auto bt = h2::h2_backtrace::dump(2);
h2::h2_backtrace b1(bt);
OK(Gt(0), b1.count);
OK(2, b1.shift);
OK(b1 == bt);
}
Case(assign constructor)
{
auto bt = h2::h2_backtrace::dump(2);
h2::h2_backtrace b1 = bt;
OK(Gt(0), b1.count);
OK(2, b1.shift);
OK(b1 == bt);
h2::h2_backtrace b2;
b2 = bt;
OK(Gt(0), b2.count);
OK(2, b2.shift);
OK(b2 == bt);
}
}
#if defined __APPLE__ || defined __linux
SUITE(backtrace extract)
{
char mangled[256] = "---";
unsigned long long offset = 0xFFFFEEEE;
#if defined __APPLE__
Case(MAC backtrace_symbols line)
{
const char* p = "3 a.out 0x000000010e777f3d _ZN2h24hook6mallocEm + 45";
bool ret = h2::backtrace_extract(p, mangled, &offset);
OK(ret);
OK("_ZN2h24hook6mallocEm", mangled);
OK(45, offset);
}
#endif
#if defined __linux
Case("./a.out(_ZN2h26runner7executeEv+0x131)[0x55aa6bb840ef]")
{
const char* p = "./a.out(_ZN2h26runner7executeEv+0x131)[0x55aa6bb840ef]";
bool ret = h2::backtrace_extract(p, mangled, &offset);
OK(ret);
OK("_ZN2h26runner7executeEv", mangled);
OK(0x131, offset);
}
Case("./ci/a.out(_ZN2h26runner7executeEv+0x131)[0x55aa6bb840ef]")
{
const char* p = "./ci/a.out(_ZN2h26runner7executeEv+0x131)[0x55aa6bb840ef]";
bool ret = h2::backtrace_extract(p, mangled, &offset);
OK(ret);
OK("_ZN2h26runner7executeEv", mangled);
OK(0x131, offset);
}
Case("./a.out(+0xb1887)[0x560c5ed06887]")
{
const char* p = "./a.out(+0xb1887)[0x560c5ed06887]";
bool ret = h2::backtrace_extract(p, mangled, &offset);
OK(ret);
OK("", mangled);
OK(0xb1887, offset);
}
Case("./a.out() [0x40b960]")
{
const char* p = "./a.out() [0x40b960]";
bool ret = h2::backtrace_extract(p, mangled, &offset);
OK(!ret);
}
Case("./a.out[0x4060e7]")
{
const char* p = "./a.out[0x4060e7]";
bool ret = h2::backtrace_extract(p, mangled, &offset);
OK(!ret);
}
#endif
}
#endif