[issue11779] test_mmap timeout (1 hour) on AMD64 Snow Leopard 3.x buildbot

2011-04-19 Thread Steffen Daode Nurpmeso
Steffen Daode Nurpmeso sdao...@googlemail.com added the comment: I think that will also be healed with the patch i've just posted to #11277. (However, though i can't ,reproduce`, it seems the Microkernel/IOKit interaction sometimes has a problem, because i *really* had messed up sparse files

[issue11779] test_mmap timeout (1 hour) on AMD64 Snow Leopard 3.x buildbot

2011-04-18 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Hum, it does still fail with a timeout of 1 hour: --- [ 41/354] test_mmap Timeout (1:00:00)! Thread 0x7fff70439ca0: File

[issue11779] test_mmap timeout (1 hour) on AMD64 Snow Leopard 3.x buildbot

2011-04-18 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Note that the various HFS variants, the default file system types on OS X, do not support sparse files at all. So any tests of large files require at some point that the system writes out all the data in the file.

[issue11779] test_mmap timeout (1 hour) on AMD64 Snow Leopard 3.x buildbot

2011-04-18 Thread Ned Deily
Ned Deily n...@acm.org added the comment: That said, on my iMac (2.4 Ghz Intel Core 2 Duo): $ time ./python -m test -v -u largefile test_mmap [...] -- Ran 24 tests in 87.673s OK 1 test OK. real1m27.875s user0m0.186s

[issue11779] test_mmap timeout (1 hour) on AMD64 Snow Leopard 3.x buildbot

2011-04-18 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: We can use the following function to check if the filesystem does support sparse files: def support_sparse_file(directory): import tempfile with tempfile.NamedTemporaryFile(dir=directory) as tmpfile: # Create a

[issue11779] test_mmap timeout (1 hour) on AMD64 Snow Leopard 3.x buildbot

2011-04-18 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Timing on the x86 Tiger buildbot: time ./python.exe -m test -v -u largefile test_mmap gives approx 5 minutes. The buildbot is a Mac mini, Intel Core Duo 1.8 GHz, 2 GB of memory, Mac OS X 10.4.10, HD: 232 GB (182 GB available) WDC

[issue11779] test_mmap timeout (1 hour) on AMD64 Snow Leopard 3.x buildbot

2011-04-18 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Maybe that buildbot machine is just overloaded. If I understand the buildbot waterfall output correctly, it looks like there are often 4 simultaneous test runs happening on that machine, one each for 2.7, 3.1, 3.2 and 3.x.