Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/python/li_cmalloc_runme.py
2019-08-04 21:38:19 -05:00

15 lines
162 B
Python

from li_cmalloc import *
p = malloc_int()
free_int(p)
ok = 0
try:
p = calloc_int(-1)
free_int(p)
except:
ok = 1
if ok != 1:
raise RuntimeError