swig/Examples/scilab/constants/runme.sci
2009-06-13 12:18:35 +00:00

32 lines
849 B
Scilab

// builder the *.so
exec builder.sce;
//loader the *.so
exec loader.sce;
printf("ICONST = %i (should be 42)\n", ICONST());
printf("FCONST = %f (should be 2.1828)\n", FCONST());
printf("CCONST = %c (should be x)\n", CCONST());
printf("CCONST2 = %s (this should be on a new line)\n", CCONST2());
printf("SCONST = %s (should be Hello World)\n", SCONST());
printf("SCONST2 = %s (should be Hello World)\n", SCONST2());
printf("EXPR = %f (should be 48.5484)\n", EXPR());
printf("iconst = %i (should be 37)\n", iconst());
printf("fconst = %f (should be 3.14)\n", fconst());
try
printf("EXTERN = %s (Arg! This should not printf(anything)\n", EXTERN());
catch
printf("EXTERN is not defined (good)\n");
try
printf("FOO = %i (Arg! This should not printf(anything)\n", FOO());
catch
printf("FOO is not defined (good)\n");