From a44361ea363ca96cab1a95c5fbea73d17ef891ee Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Wed, 5 Sep 2001 20:08:07 +0000 Subject: [PATCH] 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. --- Lib/test/test_repr.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py index c23fe77135..f635edbb13 100644 --- a/Lib/test/test_repr.py +++ b/Lib/test/test_repr.py @@ -266,4 +266,5 @@ class ClassWithFailingRepr: run_unittest(ReprTests) -run_unittest(LongReprTest) +if os.name != 'mac': + run_unittest(LongReprTest) -- 2.50.1