/trunk/Examples/test-suite/tcl/newobject1_runme.tcl
# · TCL · 28 lines · 13 code · 3 blank · 12 comment · 5 complexity · 53266bc0e0e240d4b435acdbf7a1d72b MD5 · raw file
- 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
- }
- # Disable test while we solve the problem of premature object deletion
- #$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
- #}