File: skip-unit-test-fftconv2.patch

package info (click to toggle)
octave-image 2.18.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,644 kB
  • sloc: cpp: 4,217; objc: 1,015; makefile: 32; xml: 30
file content (17 lines) | stat: -rw-r--r-- 530 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Skip unit test for function fftconv2
 The test is failing on the armel, amrhf, mips, and mipsel architectures.
Author: Rafael Laboissiere <rafael@debian.org>
Forwarded: not-needed
Last-Update: 2020-02-08

--- octave-image-2.6.2.orig/inst/fftconv2.m
+++ octave-image-2.6.2/inst/fftconv2.m
@@ -121,7 +121,7 @@ function X = fftconv2 (varargin)
 endfunction
 
 ## usage: fftconv2(a,b,[, shape])
-%!test
+%!xtest
 %! a = repmat (1:10, 5);
 %! b = repmat (10:-1:3, 7);
 %! assert (fftconv2 (a, b), conv2 (a, b), 1.8e4*eps)