All the runtime scripts are called runme.tcl now for easier testing

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5651 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-01-20 21:22:56 +00:00
commit 8d4c509404
22 changed files with 34 additions and 22 deletions

View file

@ -0,0 +1,47 @@
# file: runme.tcl
catch { load ./example[info sharedlibextension] example}
# First create some objects using the pointer library.
puts "Testing the pointer library"
set a [new_intp]
set b [new_intp]
set c [new_intp] ;# Memory for result
intp_assign $a 37
intp_assign $b 42
puts " a = $a"
puts " b = $b"
puts " c = $c"
# Call the add() function with some pointers
add $a $b $c
# Now get the result
set r [intp_value $c]
puts " 37 + 42 = $r"
# Clean up the pointers
delete_intp $a
delete_intp $b
delete_intp $c
# Now try the typemap library
# This should be much easier. Now how it is no longer
# necessary to manufacture pointers.
puts "Trying the typemap library"
set r [sub 37 42]
puts " 37 - 42 = $r"
# Now try the version with multiple return values
puts "Testing multiple return values"
set qr [divide 42 37]
set q [lindex $qr 0]
set r [lindex $qr 1]
puts " 42/37 = $q remainder $r"