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
|
#!/usr/bin/env python
from runtest import TestBase
class TestCase(TestBase):
def __init__(self):
TestBase.__init__(self, 'exception', lang='C++', result="""
# DURATION TID FUNCTION
2.777 us [10827] | __cxa_atexit();
[10827] | _GLOBAL__sub_I__Z3foov() {
[10827] | __static_initialization_and_destruction_0() {
108.818 us [10827] | std::ios_base::Init::Init();
0.350 us [10827] | __cxa_atexit();
111.039 us [10827] | } /* __static_initialization_and_destruction_0 */
111.488 us [10827] | } /* foo */
[10827] | main() {
0.078 us [10827] | foo();
[10827] | test() {
[10827] | oops() {
1.752 us [10827] | __cxa_allocate_exception();
0.088 us [10827] | std::exception::exception();
84.367 us [10827] | } /* oops */
84.652 us [10827] | } /* test */
0.090 us [10827] | bar();
85.590 us [10827] | } /* main */
""")
def setup(self):
self.option = '-N personality_v.'
def fixup(self, cflags, result):
r = result.replace("} /* oops */", """} /* oops */
0.088 us [10827] | std::exception::~exception();""")
r = r.replace("} /* main */", """} /* main */
108.818 us [10827] | std::ios_base::Init::~Init();""")
return r
|