summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/output/test_mmap1
-rw-r--r--Lib/test/test_mmap.py14
2 files changed, 13 insertions, 2 deletions
diff --git a/Lib/test/output/test_mmap b/Lib/test/output/test_mmap
index 1ce4943..605f840 100644
--- a/Lib/test/output/test_mmap
+++ b/Lib/test/output/test_mmap
@@ -34,4 +34,5 @@ test_mmap
Try opening a bad file descriptor...
Ensuring that passing 0 as map length sets map size to current file size.
Ensuring that passing 0 as map length sets map size to current file size.
+ anonymous mmap.mmap(-1, PAGESIZE)...
Test passed
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py
index 6930317..d2a2477 100644
--- a/Lib/test/test_mmap.py
+++ b/Lib/test/test_mmap.py
@@ -283,7 +283,7 @@ def test_both():
print ' Try opening a bad file descriptor...'
try:
- mmap.mmap(-1, 4096)
+ mmap.mmap(-2, 4096)
except mmap.error:
pass
else:
@@ -380,6 +380,16 @@ def test_both():
finally:
os.unlink(TESTFN)
- print ' Test passed'
+def test_anon():
+ print " anonymous mmap.mmap(-1, PAGESIZE)..."
+ m = mmap.mmap(-1, PAGESIZE)
+ for x in xrange(PAGESIZE):
+ verify(m[x] == '\0', "anonymously mmap'ed contents should be zero")
+
+ for x in xrange(PAGESIZE):
+ m[x] = ch = chr(x & 255)
+ vereq(m[x], ch)
test_both()
+test_anon()
+print ' Test passed'