git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@11251 626c5289-ae23-0410-ae9c-e8d60b6d4f22
32 lines
849 B
Scilab
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");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|