diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2022-10-07 22:39:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 22:39:53 (GMT) |
commit | a54a69989eade3589459d15def53b3c4f21b7551 (patch) | |
tree | 6fa2b522c5d0ed7c6766cfbdc22cc5ec3dbca8d4 /Makefile.pre.in | |
parent | cb4615fd43e678fe44e9aeb6a486475a05b492e7 (diff) | |
download | cpython-a54a69989eade3589459d15def53b3c4f21b7551.zip cpython-a54a69989eade3589459d15def53b3c4f21b7551.tar.gz cpython-a54a69989eade3589459d15def53b3c4f21b7551.tar.bz2 |
gh-94808: Fix regex on exotic platforms (#98036)
The test failed on a buildbot because the pointer was only 7 hex characters. To be safe,
I bumped it down to 3: 4 in case we have 32-bit platforms, and 3 in case the pointer is very small.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 1111835..4602db6 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -2038,6 +2038,7 @@ TESTSUBDIRS= distutils/tests \ test/test_zoneinfo test/test_zoneinfo/data \ test/test_unittest test/test_unittest/testmock \ test/tracedmodules \ + test/typinganndata \ test/xmltestdata test/xmltestdata/c14n-20 \ test/ziptestdata |