added more test cases and broken ones
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6726 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
60d7c9aa60
commit
f1ad655a3e
12 changed files with 218 additions and 4 deletions
|
|
@ -75,3 +75,8 @@ run_testcase = \
|
|||
clean:
|
||||
$(MAKE) -f $(top_builddir)/$(EXAMPLES)/Makefile python_clean
|
||||
|
||||
cvsignore:
|
||||
@echo '*wrap* *.pyc *.so *.dll *.exp *.lib'
|
||||
@echo Makefile
|
||||
@for i in ${CPP_TEST_CASES} ${C_TEST_CASES}; do echo $$i.py; done
|
||||
@for i in ${CPP_TEST_CASES} ${C_TEST_CASES}; do if grep -q $${i}_runme.py CVS/Entries ; then echo $${i}_runme.py; fi; done
|
||||
|
|
|
|||
8
SWIG/Examples/test-suite/python/overload_rename_runme.py
Normal file
8
SWIG/Examples/test-suite/python/overload_rename_runme.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import overload_rename
|
||||
|
||||
|
||||
f = overload_rename.Foo(1)
|
||||
f = overload_rename.Foo(1,1)
|
||||
f = overload_rename.Foo_int(1,1)
|
||||
f = overload_rename.Foo_int(1,1,1)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue