Revert "scilab: implement enum_var test"

This reverts commit fbe6c13267.

It looks like an accidental change to me
This commit is contained in:
William S Fulton 2014-06-20 20:03:22 +01:00
parent c912162361
commit 8143e59d68
2 changed files with 1 additions and 10 deletions

View File

@ -3,6 +3,6 @@
%inline %{
enum Fruit { APPLE, PEAR };
enum Fruit test;
Fruit test;
%}

View File

@ -1,9 +0,0 @@
exec("swigtest.start", -1);
test_set(APPLE_get());
if test_get() <> APPLE_get() then swigtesterror(); end
test_set(PEAR_get());
if test_get() <> PEAR_get() then swigtesterror(); end
exec("swigtest.quit", -1);