octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Test fails i Ubuntu 14.04


From: Juan Pablo Carbajal
Subject: Test fails i Ubuntu 14.04
Date: Mon, 28 Apr 2014 00:22:57 +0200

Hi,
I run make check in stable for Ubuntu 14.04 amd64
I get one failure

>>>>> processing /home/juanpi/Devel/octave/stable/scripts/plot/util/copyobj.m
  ***** testif HAVE_MAGICK
 toolkit = graphics_toolkit ();
 graphics_toolkit ("gnuplot");
 unwind_protect
   h1 = figure ("visible", "off");
   x = 0:0.1:2*pi;
   y1 = sin (x);
   y2 = exp (x - 1);
   ax = plotyy (x,y1, x-1,y2, @plot, @semilogy);
   xlabel ("X");
   ylabel (ax(1), "Axis 1");
   ylabel (ax(2), "Axis 2");
   axes (ax(1));
   text (0.5, 0.5, "Left Axis", ...
         "color", [0 0 1], "horizontalalignment", "center");
   axes (ax(2));
   text (4.5, 80, "Right Axis", ...
         "color", [0 0.5 0], "horizontalalignment", "center");
   s1 = hdl2struct (h1);
   h2 = struct2hdl (s1);
   s2 = hdl2struct (h2);
   png1 = strcat (tmpnam (), ".png");
   png2 = strcat (tmpnam (), ".png");
   unwind_protect
     print (h1, png1);
     [img1, map1, alpha1] = imread (png1);
     print (h2, png2);
     [img2, map2, alpha2] = imread (png2);
   unwind_protect_cleanup
     unlink (png1);
     unlink (png2);
   end_unwind_protect
   assert (img1, img2);
   assert (map1, map2);
   assert (alpha1, alpha2);
 unwind_protect_cleanup
   close (h1);
   close (h2);
   graphics_toolkit (toolkit);
 end_unwind_protect
!!!!! test failed
imread: cannot find /tmp/oct-OU5C2N.png

This was a build of repository revision
$ hg id
7bccc182e2f7 (stable)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]