PAGESIZE = mmap.PAGESIZE
-def test_unix():
- "Test mmap module on Unix systems"
-
+def test_both():
+ "Test mmap module on Unix systems and Windows"
+
# Create an mmap'ed file
f = open('foo', 'w+')
f.write('\0'* PAGESIZE)
f.write('foo')
f.write('\0'* (PAGESIZE-3) )
-
- m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
+
+ if sys.platform[:3]=="win":
+ m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
+ else:
+ m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
f.close()
# Simple sanity checks
print ' Test passed'
-# XXX need to write a test suite for Windows
-if sys.platform == 'win32':
- pass
-else:
- test_unix()
-
+test_both()
+