1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Prevent failure of unit test for pserver function
This is a Debian-specific patch.
Author: Rafael Laboissière <rafael@debian.org>
Forwarded: not-needed
Last-Update: 2023-09-16
--- octave-parallel-4.0.0.orig/inst/pserver.m
+++ octave-parallel-4.0.0/inst/pserver.m
@@ -220,7 +220,7 @@ function full_path = search_path (file)
endfunction
-%!test
+%!xtest
%! pserver ();
%! conns = pconnect ({"localhost"});
%! assert (res = netcellfun (conns, @ (x, y) x * y, {1, 2, 3, 4}, {2, 3, 4, 5}), [2, 6, 12, 20]);
|