Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3k
Changeset: r58829:8d2393dd632b
Date: 2012-11-11 16:59 +0100
http://bitbucket.org/pypy/pypy/changeset/8d2393dd632b/

Log:    Skip a test in test_aifc, like we do for 2.7.

diff --git a/lib-python/3.2/test/test_aifc.py b/lib-python/3.2/test/test_aifc.py
--- a/lib-python/3.2/test/test_aifc.py
+++ b/lib-python/3.2/test/test_aifc.py
@@ -1,4 +1,4 @@
-from test.support import findfile, run_unittest, TESTFN
+from test.support import findfile, run_unittest, TESTFN, impl_detail
 import unittest
 import os
 import io
@@ -72,6 +72,7 @@
         self.assertEqual(f.getparams(), fout.getparams())
         self.assertEqual(f.readframes(5), fout.readframes(5))
 
+    @impl_detail("PyPy has no audioop module yet", pypy=False)
     def test_compress(self):
         f = self.f = aifc.open(self.sndfilepath)
         fout = self.fout = aifc.open(TESTFN, 'wb')
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to