diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/test/gdb_sample.py')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Lib/test/gdb_sample.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/gdb_sample.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/gdb_sample.py new file mode 100644 index 0000000000..15ed560644 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/gdb_sample.py @@ -0,0 +1,12 @@ +# Sample script for use by test_gdb.py
+
+def foo(a, b, c):
+ bar(a, b, c)
+
+def bar(a, b, c):
+ baz(a, b, c)
+
+def baz(*args):
+ print(42)
+
+foo(1, 2, 3)
|