Skip LargeMemoryNumpyTest on 32 bit systems

This commit is contained in:
cgohlke 2014-06-30 19:20:15 -07:00
parent 10da645ac6
commit 647f2e1771

View File

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