scilab: fix array_member test
This commit is contained in:
parent
8a2472c649
commit
423b52aa05
1 changed files with 5 additions and 5 deletions
|
|
@ -2,15 +2,15 @@ exec("swigtest.start", -1);
|
|||
|
||||
f = new_Foo();
|
||||
Foo_data_set(f, [0:7]);
|
||||
if ~isequal(Foo_data_get(f), [0:7]) then swigtesterror(); end
|
||||
checkequal(Foo_data_get(f), [0:7], "Foo_data_get()");
|
||||
|
||||
Foo_text_set(f, 'abcdefgh');
|
||||
if ~isequal(Foo_text_get(f), 'abcdefgh') then swigtesterror(); end
|
||||
Foo_text_set(f, "abcdefgh");
|
||||
checkequal(Foo_text_get(f), "abcdefgh", "Foo_text_get()");
|
||||
delete_Foo(f);
|
||||
|
||||
m = new_MyBuff();
|
||||
MyBuff_x_set(m, uint8([0:11]));
|
||||
if ~isequal(MyBuff_x_get(m), uint8([0:11])) then swigtesterror(); end
|
||||
MyBuff_x_set(m, [0:11]);
|
||||
checkequal(MyBuff_x_get(m), [0:11], "MyBuff_x_get()");
|
||||
delete_MyBuff(m);
|
||||
|
||||
exec("swigtest.quit", -1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue