aboutsummaryrefslogtreecommitdiff
path: root/examples/test/.lldb-pre-post-flight
blob: c1568a7295a7d06dafa0744c4cefbcf09bda4cb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
def pre_flight(test):
    __import__("lldb")
    __import__("lldbtest")
    print "\nRunning pre-flight function:"
    print "for test case:", test

def post_flight(test):
    __import__("lldb")
    __import__("lldbtest")
    print "\nRunning post-flight function:"
    print "for test case:", test