~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/core/tests/nonreg_tests/bug_4611.dia.ref

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
// <-- Short Description -->
13
13
// what function doesn't returns a complete list of functions.
14
14
[a,b]=what();
15
 
if with_module('arnoldi') then
16
 
  if grep(a,'zneupd') == [] then bugmes();quit;end
17
 
end
18
 
if with_module('graphics') then
19
 
  if grep(a,'zoom_rect') == [] then bugmes();quit;end
20
 
end
21
 
if part(a(1),1) <> '%' then bugmes();quit;end
 
15
if with_module("arnoldi") then
 
16
    assert_checkfalse(isempty(grep(a, "zneupd")));
 
17
end
 
18
if with_module("graphics") then
 
19
    assert_checkfalse(isempty(grep(a,"zoom_rect")));
 
20
end
 
21
assert_checkequal(part(a(1),1), "!");
 
22
assert_checkequal(part(a(2),1), "%");