blob: 8a1202f29edb1925150cc5bd2f4dcf7d9b51350e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// <-- Non-regression test for bug 2467 -->
//
// <-- Bugzilla URL -->
// http://www.scilab.org/cgi-bin/bugzilla_bug_II/show_bug.cgi?id=2467
//
// <-- Short Description -->
// when trying to open plot files (scg) containing graphs with
// logarithmic axes, I get this mysterious error message..
// Scilab Project - Serge Steer
// Copyright INRIA 2007
// Date : Sept 2007
BugNumber=2467
plot(1:10)
a=gca();a.log_flags='lnn';
path=TMPDIR+'/bug2467.scg'
xsave(path)
clf();
T=execstr("xload(path)",'errcatch')==0
affich_result(T,BugNumber) ;
|