1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Skip failing unit tests in @svg/svg.m
Author: Rafael Laboissière <rafael@debian.org>
Bug: https://savannah.gnu.org/bugs/index.php?57779
Forwarded: not-needed
Last-Update: 2020-02-09
--- octave-geometry-4.0.0.orig/inst/@svg/svg.m
+++ octave-geometry-4.0.0/inst/@svg/svg.m
@@ -71,12 +71,12 @@ endfunction
%! ids = dc.pathid();
%! dc.getpath({ids{[1 3]}});
-%!test
+%!xtest
%! dc = svg('drawing6.svg');
%! ids = dc.pathid();
%! P = dc.path2polygon(ids{1});
-%!test
+%!xtest
%! dc = svg('drawing6.svg');
%! dc.plot();
%! dc.plot('color','r','linewidth',2);
|