git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12402 626c5289-ae23-0410-ae9c-e8d60b6d4f22
27 lines
290 B
Scilab
27 lines
290 B
Scilab
exec("swigtest.start", -1);
|
|
|
|
try
|
|
foo = new_Foo();
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
try
|
|
foo2 = Foo_blah(foo);
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
try
|
|
delete_Foo(foo);
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
try
|
|
delete_Foo(foo2);
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
exec("swigtest.quit", -1);
|