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:
Jack Jansen 2001-09-05 20:08:07 +00:00
parent eb2d36c98f
commit a44361ea36

View file

@ -266,4 +266,5 @@ class ClassWithFailingRepr:
run_unittest(ReprTests)
run_unittest(LongReprTest)
if os.name != 'mac':
run_unittest(LongReprTest)