blob: 9246d67d5af88917a9cdb0b93a979ca5c322cea8 (
plain)
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
106
107
108
109
110
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <IceUtil/StringUtil.h>
#include <TestHelper.h>
#include <fstream>
using namespace IceUtil;
using namespace std;
namespace IceUtilInternal
{
extern bool ICE_API printStackTraces;
}
namespace
{
class Thrower : public IceUtil::Shared
{
public:
Thrower() : _idx(0)
{
}
void first()
{
_idx++;
second();
}
void second()
{
_idx++;
third();
}
void third()
{
_idx++;
forth();
}
void forth()
{
_idx++;
fifth();
}
void fifth()
{
_idx++;
throw IceUtil::NullHandleException(__FILE__, __LINE__);
}
private:
int _idx;
};
typedef IceUtil::Handle<Thrower> ThrowerPtr;
vector<string>
splitLines(const string& str)
{
vector<string> result;
istringstream is(str);
string line;
while(std::getline(is, line))
{
result.push_back(line);
}
return result;
}
}
class Client : public Test::TestHelper
{
public:
virtual void run(int argc, char* argv[]);
};
void
Client::run(int, char*[])
{
if(IceUtilInternal::stackTraceImpl() == IceUtilInternal::STNone)
{
cout << "This Ice build cannot capture stack traces" << endl;
return;
}
IceUtilInternal::printStackTraces = true;
cout << "checking stacktrace... ";
ThrowerPtr thrower = new Thrower();
try
{
thrower->first();
}
catch(const IceUtil::Exception& ex)
{
test(splitLines(ex.ice_stackTrace()).size() >= 3);
}
cout << "ok" << endl;
}
DEFINE_TEST(Client);
|