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

« back to all changes in this revision

Viewing changes to modules/compatibility_functions/tests/nonreg_tests/bug_7763.tst

  • 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:
22
22
assert_checkequal(r, 0);
23
23
 
24
24
assert_checkfalse(execstr("[r,k] = mtlb_max(1 + %i * 0, 0)", "errcatch") == 0);
25
 
refMsg = msprintf(_("%s: Wrong number of output argument(s): %d expected."), "mtlb_max", 1); 
 
25
refMsg = msprintf(_("%s: Wrong number of output argument(s): %d expected.\n"), "mtlb_max", 1); 
26
26
assert_checkerror("[r,k] = mtlb_max(1 + %i * 0, 0)", refMsg);
27
27
 
28
28
assert_checkfalse(execstr("[r,k] = mtlb_min(1 + %i * 0, 0)", "errcatch") == 0);
29
 
refMsg = msprintf(_("%s: Wrong number of output argument(s): %d expected."), "mtlb_min", 1); 
 
29
refMsg = msprintf(_("%s: Wrong number of output argument(s): %d expected.\n"), "mtlb_min", 1); 
30
30
assert_checkerror("[r,k] = mtlb_min(1 + %i * 0, 0)", refMsg);
31
31
 
32
32
 
33
33
 
 
34
 
 
35
 
34
36