blob: 700dd0017febe67527a5b4bb00b3829a965ace4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// <-- Non-regression test for bug 1082 -->
//
// <-- Bugzilla URL -->
// http://www.scilab.org/cgi-bin/bugzilla_bug_II/show_bug.cgi?id=1082
//
// <-- Short Description -->
// Error during conversion of a very simple file. Though the
// syntax is the same in both languages, the converter fails to
// convert the rounding of the field of a structure: "round(a.b)"
// Non-regression test file for bug 1082
// Copyright INRIA
// Scilab Project - F.Belahcene
mode(-1);
clear;
MFILECONTENTS=["structure.field = 2;"
""
"data = round(structure.field);"]
MFILE=TMPDIR+"/bug1082.m"
SCIFILE=TMPDIR+"/bug1082.sci"
mputl(MFILECONTENTS,MFILE);
mfile2sci(MFILE,TMPDIR);
SCIFILECONTENTS=mgetl(SCIFILE);
SCIFILECONTENTSREF=["";
"// Display mode";
"mode(0);";
"";
"// Display warning for floating point exception";
"ieee(1);";
"";
"structure.field = 2;";
"";
"data = round(mtlb_double(structure.field));"]
correct=%T
if or(SCIFILECONTENTSREF<>SCIFILECONTENTS) then
correct=%F
end
affich_result(correct,1082);
clear
|