From c60e048f3aba852710b9763a6fb24adad2017f40 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 20 Jun 2019 19:38:39 +0200 Subject: [PATCH] [py] fix pvoc tests on powerpc --- python/tests/test_phasevoc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/tests/test_phasevoc.py b/python/tests/test_phasevoc.py index cf3b7ac8..b228269e 100755 --- a/python/tests/test_phasevoc.py +++ b/python/tests/test_phasevoc.py @@ -1,7 +1,7 @@ #! /usr/bin/env python from numpy.testing import TestCase, assert_equal, assert_array_less -from _tools import parametrize +from _tools import parametrize, skipTest from aubio import fvec, cvec, pvoc, float_type import numpy as np @@ -51,7 +51,7 @@ class Test_aubio_pvoc_test_case(object): assert_equal (s.phas[s.phas > 0], +np.pi) assert_equal (s.phas[s.phas < 0], -np.pi) assert_equal (np.abs(s.phas[np.abs(s.phas) != np.pi]), 0) - self.skipTest('pvoc(fvec(%d)).phas != +0, ' % win_s \ + skipTest('pvoc(fvec(%d)).phas != +0, ' % win_s \ + 'This is expected when using fftw3 on powerpc.') assert_equal ( r, 0.) -- 2.11.0