summaryrefslogtreecommitdiff
path: root/examples/test/.lldb-pre-post-flight
diff options
context:
space:
mode:
Diffstat (limited to 'examples/test/.lldb-pre-post-flight')
-rw-r--r--examples/test/.lldb-pre-post-flight12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/test/.lldb-pre-post-flight b/examples/test/.lldb-pre-post-flight
new file mode 100644
index 0000000000000..c1568a7295a7d
--- /dev/null
+++ b/examples/test/.lldb-pre-post-flight
@@ -0,0 +1,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
+