Commit e8e85b99 authored by Andreas Jung's avatar Andreas Jung

The ISO_8859_1 splitter module has some problems under Mac OSX

due to some internal problems (probably because of a wrong jumptable).
The unittest for the splitter has been temporarily disabled on Mac OSX.
parent 479cdd9a
......@@ -63,6 +63,11 @@ class TestCase( unittest.TestCase ):
def testISOSplitter(self):
"""test ISOSplitter"""
import sys, warnings
if sys.platform in ('darwin5',):
warnings.warn("Due to internal problems on Mac OS-X, this test is disabled")
return
for text,splitted in self.testdata:
self._test("ISO_8859_1_Splitter",text,splitted)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment