xref: /llvm-project/lldb/examples/test/.lldb-pre-post-flight (revision 44d2497138095224591706b245eb10848e111c0e)
1def pre_flight(test):
2    __import__("lldb")
3    __import__("lldbtest")
4    print "\nRunning pre-flight function:"
5    print "for test case:", test
6
7def post_flight(test):
8    __import__("lldb")
9    __import__("lldbtest")
10    print "\nRunning post-flight function:"
11    print "for test case:", test
12
13