Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
13 lines
156 B
Python
13 lines
156 B
Python
# 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)
|