Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/tcl/newobject2_runme.tcl
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

28 lines
533 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
#}