mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-05 23:23:51 -09:00
Signed-off-by: Fiona Klute (WIWA) <fiona.klute@gmx.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11 lines
214 B
Python
11 lines
214 B
Python
# The test needs some code to profile, it does not have to be much.
|
|
|
|
def run(a):
|
|
print(a[0])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
# make sure there's at least a small allocation
|
|
a = ['Hello World!']
|
|
run(a)
|