git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7378 626c5289-ae23-0410-ae9c-e8d60b6d4f22
27 lines
550 B
Tcl
27 lines
550 B
Tcl
if [ catch { load ./newobject1[info sharedlibextension] newobject1} err_msg ] {
|
|
puts stderr "Could not load shared object:\n$err_msg"
|
|
}
|
|
|
|
set foo1 [Foo_makeFoo]
|
|
if {[Foo_fooCount] != 1} {
|
|
puts stderr "newobject1 test 1 failed"
|
|
exit 1
|
|
}
|
|
|
|
set foo2 [$foo1 makeMore]
|
|
if {[Foo_fooCount] != 2} {
|
|
puts stderr "newobject1 test 2 failed"
|
|
exit 1
|
|
}
|
|
|
|
$foo1 -delete
|
|
if {[Foo_fooCount] != 1} {
|
|
puts stderr "newobject1 test 3 failed"
|
|
exit 1
|
|
}
|
|
|
|
$foo2 -delete
|
|
if {[Foo_fooCount] != 0} {
|
|
puts stderr "newobject1 test 4 failed"
|
|
exit 1
|
|
}
|