Skip LargeMemoryTest on 32 bit systems

This commit is contained in:
cgohlke 2014-06-30 19:19:09 -07:00
parent 32a6d398d2
commit 10da645ac6

View File

@ -1,3 +1,6 @@
import sys
import unittest
from helper import *
# This test is not run automatically.
@ -14,6 +17,7 @@ YDIM = 32769
XDIM = 48000
@unittest.skipIf(sys.maxsize <= 2**32, "requires 64 bit system")
class LargeMemoryTest(PillowTestCase):
def _write_png(self, xdim, ydim):