mirror of https://github.com/swig/swig
24 lines
541 B
Python
24 lines
541 B
Python
from python_append import *
|
|
|
|
|
|
# test not relevant for -builtin
|
|
if is_python_builtin():
|
|
exit(0)
|
|
|
|
t = Test()
|
|
t.funk()
|
|
t.static_func()
|
|
|
|
if grabpath() != os.path.dirname(mypath):
|
|
raise RuntimeError("grabpath failed")
|
|
|
|
if grabstaticpath() != os.path.basename(mypath):
|
|
raise RuntimeError("grabstaticpath failed")
|
|
|
|
clearstaticpath()
|
|
if grabstaticpath() != None:
|
|
raise RuntimeError("Resetting staticfuncpath failed")
|
|
Test.static_func()
|
|
if grabstaticpath() != os.path.basename(mypath):
|
|
raise RuntimeError("grabstaticpath failed")
|