reenable missing INPUT/OUTPUT, and add tests for std::string

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8637 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-01-30 19:55:43 +00:00
commit 829cd3a908
7 changed files with 38 additions and 11 deletions

View file

@ -102,3 +102,12 @@ end
if (Structure.ConstStaticMemberString != "const static member string")
raise RuntimeError
end
if (test_reference_input("hello") != "hello")
raise RuntimeError
end
s = test_reference_inout("hello")
if (s != "hellohello")
raise RuntimeError
end