swig/Examples/test-suite/tcl/newobject2_runme.tcl
William S Fulton 878f80fc0c %newobject tests from Bob Marinier
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7378 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2005-08-18 20:38:23 +00:00

27 lines
523 B
Tcl

if [ catch { load ./newobject2[info sharedlibextension] newobject2} err_msg ] {
puts stderr "Could not load shared object:\n$err_msg"
}
set foo1 [makeFoo]
if {[fooCount] != 1} {
puts stderr "newobject2 test 1 failed"
exit 1
}
set foo2 [makeFoo]
if {[fooCount] != 2} {
puts stderr "newobject2 test 2 failed"
exit 1
}
$foo1 -delete
if {[fooCount] != 1} {
puts stderr "newobject2 test 3 failed"
exit 1
}
$foo2 -delete
if {[fooCount] != 0} {
puts stderr "newobject2 test 4 failed"
exit 1
}