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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// <-- Non-regression test for bug 924 -->
//
// <-- Bugzilla URL -->
// http://www.scilab.org/cgi-bin/bugzilla_bug_II/show_bug.cgi?id=924
//
// <-- Short Description -->
// Bad handling of variable display in functions.
// Following Matlab code :
// function test
// a='milou'
// a
// sould be converted to Scilab code :
// function test
// a='milou'
// disp(a)
// but it is not....
// Copyright INRIA
// Scilab Project - V. Couvert
// Modified by Pierre MARECHAL
// Copyright INRIA
// Date : 18 Mar 2005
MFILECONTENTS=["function bug924";
"a=''milou'';";
"a=''milou'',";
"a=''milou''";
"a;";
"a,";
"a";
"[c,d]=svd(1);";
"[c,d]=svd(1),";
"[c,d]=svd(1)";
"b=a;";
"b=a,";
"b=a"]
MFILE=TMPDIR+"/bug924.m"
SCIFILE=TMPDIR+"/bug924.sci"
mputl(MFILECONTENTS,MFILE);
mfile2sci(MFILE,TMPDIR);
SCIFILECONTENTS=mgetl(SCIFILE);
SCIFILECONTENTSREF=["function [] = bug924()";
"";
"// Display mode";
"mode(0);";
"";
"// Display warning for floating point exception";
"ieee(1);";
"";
"a = ""milou"";";
"a = ""milou"",";
"a = ""milou""";
"a;";
"a,";
"a";
"[c,d] = svd(1);";
"[c,d] = svd(1),";
"[c,d] = svd(1)";
"b = a;";
"b = a,";
"b = a";
"endfunction"]
if or(SCIFILECONTENTSREF<>SCIFILECONTENTS) then
affich_result(%F,924);
else
affich_result(%T,924);
end
|