%newobject tests from Bob Marinier
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7378 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
80e10942eb
commit
e12fafc129
2 changed files with 54 additions and 0 deletions
27
SWIG/Examples/test-suite/tcl/newobject1_runme.tcl
Normal file
27
SWIG/Examples/test-suite/tcl/newobject1_runme.tcl
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
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
|
||||
}
|
||||
27
SWIG/Examples/test-suite/tcl/newobject2_runme.tcl
Normal file
27
SWIG/Examples/test-suite/tcl/newobject2_runme.tcl
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue