New Scilab tests/examples
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12272 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
2e69d7a7d1
commit
57a14d7459
2 changed files with 50 additions and 0 deletions
15
Examples/test-suite/scilab/struct_initialization_runme.sci
Normal file
15
Examples/test-suite/scilab/struct_initialization_runme.sci
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
exec("swigtest.start", -1);
|
||||
|
||||
if StructC_x_get(instanceC1_get()) <> 10 then swigtesterror(); end
|
||||
|
||||
if StructD_x_get(instanceD1_get()) <> 10 then swigtesterror(); end
|
||||
|
||||
if StructD_x_get(instanceD2_get()) <> 20 then swigtesterror(); end
|
||||
|
||||
if StructD_x_get(instanceD3_get()) <> 30 then swigtesterror(); end
|
||||
|
||||
if StructE_x_get(instanceE1_get()) <> 1 then swigtesterror(); end
|
||||
|
||||
if StructF_x_get(instanceF1_get()) <> 1 then swigtesterror(); end
|
||||
|
||||
exec("swigtest.quit", -1);
|
||||
35
Examples/test-suite/scilab/union_parameter_runme.sci
Normal file
35
Examples/test-suite/scilab/union_parameter_runme.sci
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
// Some lines are commented out because of too long identifiers...
|
||||
|
||||
exec("swigtest.start", -1);
|
||||
|
||||
event = new_SDL_Event();
|
||||
|
||||
for i=1:2
|
||||
evAvailable = SDL_PollEvent(event);
|
||||
evType = SDL_Event_type_get(event);
|
||||
|
||||
if evType==1 then
|
||||
specEvent = SDL_Event_active_get(event);
|
||||
_type = SDL_ActiveEvent_type_get(specEvent);
|
||||
|
||||
if _type <> evType then swingtesterror(); end
|
||||
|
||||
gain = SDL_ActiveEvent_gain_get(specEvent);
|
||||
//state = SDL_ActiveEvent_state_get(specEvent);
|
||||
end
|
||||
|
||||
if evType==2 then
|
||||
specEvent = SDL_Event_key_get(event);
|
||||
//_type = SDL_KeyboardEvent_type_get(specEvent);
|
||||
|
||||
//if _type <> evType then swingtesterror(); end
|
||||
|
||||
//_which = SDL_KeyboardEvent_which_get(specEvent);
|
||||
//state = SDL_KeyboardEvent_state_get(specEvent);
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
delete_SDL_Event(event);
|
||||
|
||||
exec("swigtest.quit", -1);
|
||||
Loading…
Add table
Add a link
Reference in a new issue