// This file is distributed under the same license as the Scilab package.
// =============================================================================
// <-- CLI SHELL MODE -->
+wMode = warning("query");
+warning("off");
n = 50;
nstr = strcat(string(1:n),' ');
fstr = strcat(strsubst(string(ones(1,n)),'1','%d'), ' ');
123.
if a<>123|b<>456 then bugmes();quit;end
+warning(wMode);
// <-- CLI SHELL MODE -->
+wMode = warning("query");
+warning("off");
+
n = 50;
nstr = strcat(string(1:n),' ');
fstr = strcat(strsubst(string(ones(1,n)),'1','%d'), ' ');
if a<>4|b<>'test'|c<>23.45 then pause,end
[a,b]=sscanf('123\n456','%e%e')
-if a<>123|b<>456 then pause,end
\ No newline at end of file
+if a<>123|b<>456 then pause,end
+
+warning(wMode);
\ No newline at end of file