diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-09-05 20:08:07 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-09-05 20:08:07 (GMT) |
commit | a44361ea363ca96cab1a95c5fbea73d17ef891ee (patch) | |
tree | cbde37cf891ddabb70971ad46bcaaeb10968dfb5 /Lib/test/test_repr.py | |
parent | eb2d36c98f126ce196792dc78b01157a6b2b263c (diff) | |
download | cpython-a44361ea363ca96cab1a95c5fbea73d17ef891ee.zip cpython-a44361ea363ca96cab1a95c5fbea73d17ef891ee.tar.gz cpython-a44361ea363ca96cab1a95c5fbea73d17ef891ee.tar.bz2 |
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.
Diffstat (limited to 'Lib/test/test_repr.py')
-rw-r--r-- | Lib/test/test_repr.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py index c23fe77..f635edb 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) |