diff options
author | Armin Rigo <arigo@tunes.org> | 2020-09-03 08:17:02 +0200 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2020-09-03 08:17:02 +0200 |
commit | ce1118a133c4d6af67a6350ac1a6c7c10de3d59a (patch) | |
tree | 07c08be9d71faeb0e79820aa7ab4f9e779eb90e5 /extra_tests | |
parent | fix for e11b82085fc9 (hard to test, it requires careful consideration of (diff) | |
download | pypy-ce1118a133c4d6af67a6350ac1a6c7c10de3d59a.tar.gz pypy-ce1118a133c4d6af67a6350ac1a6c7c10de3d59a.tar.bz2 pypy-ce1118a133c4d6af67a6350ac1a6c7c10de3d59a.zip |
update to cffi/108825c76286
Diffstat (limited to 'extra_tests')
-rw-r--r-- | extra_tests/cffi_tests/test_c.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra_tests/cffi_tests/test_c.py b/extra_tests/cffi_tests/test_c.py index e76950f4e5..14d3f662a8 100644 --- a/extra_tests/cffi_tests/test_c.py +++ b/extra_tests/cffi_tests/test_c.py @@ -2553,8 +2553,8 @@ def test_errno(): assert get_errno() == 95 def test_errno_callback(): - if globals().get('PY_DOT_PY') == '2.5': - py.test.skip("cannot run this test on py.py with Python 2.5") + if globals().get('PY_DOT_PY'): + py.test.skip("cannot run this test on py.py (e.g. fails on Windows)") set_errno(95) def cb(): e = get_errno() |