blob: 05afa8fc7d92068da80c2056135c219af88d3b27 (
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
51
|
// <-- Non-regression test for bug 942 -->
//
// <-- Bugzilla URL -->
// http://www.scilab.org/cgi-bin/bugzilla_bug_II/show_bug.cgi?id=942
//
// <-- Short Description -->
// Adding a comment character '%' at the end of a function
// prototype makes the conversion fail.
//
// File Test.m :
//
// function [a] = Test (x) % test
// a = x;
// Copyright INRIA
// Scilab Project - V. Couvert
// Modified by Pierre MARECHAL
// Copyright INRIA
// Date : 18 Mar 2005
MFILECONTENTS=["function [a] = bug942 (x) % bug942";"% help line";"% help line";"a = x;"]
MFILE=TMPDIR+"/bug942.m"
SCIFILE=TMPDIR+"/bug942.sci"
mputl(MFILECONTENTS,MFILE);
mfile2sci(MFILE,TMPDIR);
SCIFILECONTENTS=mgetl(SCIFILE);
SCIFILECONTENTSREF=["function [a] = bug942(x) // bug942";
"";
"// Ouput variables initialisation (not found in input variables)";
"a=[];";
"";
"// Display mode";
"mode(0);";
"";
"// Display warning for floating point exception";
"ieee(1);";
"";
"// help line";
"// help line";
"a = x;";
"endfunction"]
if or(SCIFILECONTENTSREF<>SCIFILECONTENTS) then
affich_result(%F,942);
else
affich_result(%T,942);
end
|