aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-08-16 08:40:53 +0300
committerMatti Picus <matti.picus@gmail.com>2020-08-16 08:40:53 +0300
commitb56feb7346247fe6057b53a50503ed9bf3843ed7 (patch)
tree3c1a803ed5c2ed107f9606e23823f9aae6459ac0 /rpython/rtyper
parentupdate to cffi 1.14.2 (diff)
downloadpypy-b56feb7346247fe6057b53a50503ed9bf3843ed7.tar.gz
pypy-b56feb7346247fe6057b53a50503ed9bf3843ed7.tar.bz2
pypy-b56feb7346247fe6057b53a50503ed9bf3843ed7.zip
windows writes addresses with upper case hex
Diffstat (limited to 'rpython/rtyper')
-rw-r--r--rpython/rtyper/lltypesystem/test/test_rffi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpython/rtyper/lltypesystem/test/test_rffi.py b/rpython/rtyper/lltypesystem/test/test_rffi.py
index cd073f14b3..8183337176 100644
--- a/rpython/rtyper/lltypesystem/test/test_rffi.py
+++ b/rpython/rtyper/lltypesystem/test/test_rffi.py
@@ -889,7 +889,7 @@ class TestCRffi(BaseTestRffi):
del os.environ['PYPYLOG']
import re
- r = re.compile(r"freeing str [[] [0-9a-fx]+ []]")
+ r = re.compile(r"freeing str [[] [0-9a-fxA-FX]+ []]")
matches = r.findall(error)
assert len(matches) == 10000 # must be all 10000 strings,
assert len(set(matches)) == 10000 # and no duplicates