File: xtest-pserver.patch

package info (click to toggle)
octave-parallel 4.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,648 kB
  • sloc: ansic: 24,011; cpp: 6,848; sh: 4,476; makefile: 297; perl: 170; xml: 22
file content (17 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (2)
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]);