git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5359 626c5289-ae23-0410-ae9c-e8d60b6d4f22
23 lines
338 B
Python
23 lines
338 B
Python
import inctest
|
|
|
|
error = 0
|
|
try:
|
|
a = inctest.A()
|
|
except:
|
|
print "didn't find A"
|
|
print "therefore, I didn't include 'testdir/subdir1/hello.i'"
|
|
error = 1
|
|
pass
|
|
|
|
|
|
try:
|
|
b = inctest.B()
|
|
except:
|
|
print "didn't find B"
|
|
print "therefore, I didn't include 'testdir/subdir2/hello.i'"
|
|
error = 1
|
|
pass
|
|
|
|
if error == 1:
|
|
raise RuntimeError
|
|
|