1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/env python
from runtest import TestBase
class TestCase(TestBase):
def __init__(self):
TestBase.__init__(self, 'lib', """
# DURATION TID FUNCTION
[17457] | lib_a() {
6.911 us [17457] | lib_b();
8.279 us [17457] | } /* lib_a */
""", sort='simple')
def build(self, name, cflags='', ldflags=''):
if TestBase.build_libabc(self, cflags, ldflags) != 0:
return TestBase.TEST_BUILD_FAIL
return TestBase.build_libmain(self, name, 's-libmain.c',
['libabc_test_lib.so'])
def setup(self):
self.option = '--force --no-libcall -T lib_b@libabc_test,depth=1'
|