blob: 23f2c758f577360fa7db1a9033a0f304b0c72131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder.sce: Please, do not edit this file
oldmode = mode(); mode(-1);
oldlines = lines()(2); lines(0);
try
exec(get_absolute_file_path("loader.sce")+"etc/"+"test_toolbox.start");
catch
[errmsg, tmp, nline, func] = lasterror()
msg = "%s: error on line #%d: ""%s""\n"
msg = msprintf(msg, func, nline, errmsg)
lines(oldlines)
mode(oldmode);
clear oldlines oldmode tmp nline func
error(msg);
end
lines(oldlines);
mode(oldmode);
clear oldlines oldmode;
|