]> granicus.if.org Git - python/commitdiff
LongReprTest fails on the Mac because it uses filenames with more than
authorJack Jansen <jack.jansen@cwi.nl>
Wed, 5 Sep 2001 20:08:07 +0000 (20:08 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Wed, 5 Sep 2001 20:08:07 +0000 (20:08 +0000)
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.

Lib/test/test_repr.py

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