mirror of
https://github.com/python/cpython.git
synced 2025-11-12 23:16:47 +00:00
LongReprTest fails on the Mac because it uses filenames with more than
32 characters per component. This makes mkdir() calls and such fail with EINVAL. For now I am disabling the test on the Mac, and I'll open a bugreport.
This commit is contained in:
parent
eb2d36c98f
commit
a44361ea36
1 changed files with 2 additions and 1 deletions
|
|
@ -266,4 +266,5 @@ class ClassWithFailingRepr:
|
||||||
|
|
||||||
|
|
||||||
run_unittest(ReprTests)
|
run_unittest(ReprTests)
|
||||||
run_unittest(LongReprTest)
|
if os.name != 'mac':
|
||||||
|
run_unittest(LongReprTest)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue