tests: Add feature test for when heap allocation is disabled.

This commit is contained in:
Damien George 2014-05-31 18:33:16 +01:00
parent a053e37b2c
commit 4d659f566f
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# check that we can do certain things without allocating heap memory
import gc
def f(a):
print(a)
def g(a, b=2):
print(a, b)
global_var = 1
def h():
global global_var
global_var = 2 # set an existing global variable
for i in range(2): # for loop
f(i) # function call
f(i * 2 + 1) # binary operation with small ints
f(a=i) # keyword arguments
g(i) # default arg (second one)
g(i, i) # 2 args
# call h with heap allocation disabled
gc.disable()
h()
gc.enable()