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:
Marcelo Matus 2004-11-15 18:45:28 +00:00
commit f1ad655a3e
12 changed files with 218 additions and 4 deletions

View file

@ -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

View 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)