summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/return_const_value_runme.py
blob: ff3bd5f02c422ab51b25b8e4a18c57aafedacd50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import return_const_value
import sys

p = return_const_value.Foo_ptr_getPtr()
if (p.getVal() != 17):
    print "Runtime test1 failed. p.getVal()=", p.getVal()
    sys.exit(1)

p = return_const_value.Foo_ptr_getConstPtr()
if (p.getVal() != 17):
    print "Runtime test2 failed. p.getVal()=", p.getVal()
    sys.exit(1)