This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients loewis, nadeem.vawda, pitrou, python-dev, vstinner
Date 2012-02-24.23:53:10
SpamBayes Score 0.0029675576
Marked as misclassified No
Message-id <1330127591.32.0.538762690764.issue14107@psf.upfronthosting.co.za>
In-reply-to
Content
I ran test_bigmem on my computer. The test pass but it is really slow.
----
$ ./python -m test -v -M 8G test_bigmem
(...
Ran 164 tests in 3228.227s

OK (skipped=44)
1 test OK.
----

One hour, whereas 44 tests are skipped. Skipped tests are the tests using the most quantity of memory, so I expect that they are even slower.

Do you need these tests using so much memory (and are really slow)?
---
test_capitalize (test.test_bigmem.StrTest) ... skipped 'not enough memory: 24.0G minimum needed'
test_encode_utf32 (test.test_bigmem.StrTest) ... skipped 'not enough memory: 9.0G minimum needed'
test_format (test.test_bigmem.StrTest) ... skipped 'not enough memory: 12.0G minimum needed'
test_repr_large (test.test_bigmem.StrTest) ... skipped 'not enough memory: 10.0G minimum needed'
test_split_large (test.test_bigmem.StrTest) ... skipped 'not enough memory: 20.0G minimum needed'
test_swapcase (test.test_bigmem.StrTest) ... skipped 'not enough memory: 24.0G minimum needed'
test_title (test.test_bigmem.StrTest) ... skipped 'not enough memory: 24.0G minimum needed'
test_translate (test.test_bigmem.StrTest) ... skipped 'not enough memory: 12.0G minimum needed'
test_split_large (test.test_bigmem.BytesTest) ... skipped 'not enough memory: 20.0G minimum needed'
test_compare (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 32.0G minimum needed'
test_concat_large (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 48.0G minimum needed'
test_concat_small (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 24.0G minimum needed'
test_contains (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_from_2G_generator (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 9.0G minimum needed'
test_from_almost_2G_generator (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 9.0G minimum needed'
test_hash (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_index_and_slice (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_repeat_large (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 48.0G minimum needed'
test_repeat_large_2 (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 12.0G minimum needed'
test_repeat_small (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 24.0G minimum needed'
test_repr_large (test.test_bigmem.TupleTest) ... skipped 'not enough memory: 22.0G minimum needed'
test_append (test.test_bigmem.ListTest) ... skipped 'not enough memory: 18.0G minimum needed'
test_compare (test.test_bigmem.ListTest) ... skipped 'not enough memory: 32.0G minimum needed'
test_concat_large (test.test_bigmem.ListTest) ... skipped 'not enough memory: 48.0G minimum needed'
test_concat_small (test.test_bigmem.ListTest) ... skipped 'not enough memory: 24.0G minimum needed'
test_contains (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_count (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_extend_large (test.test_bigmem.ListTest) ... skipped 'not enough memory: 32.0G minimum needed'
test_extend_small (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_hash (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_index (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_index_and_slice (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_inplace_concat_large (test.test_bigmem.ListTest) ... skipped 'not enough memory: 48.0G minimum needed'
test_inplace_concat_small (test.test_bigmem.ListTest) ... skipped 'not enough memory: 24.0G minimum needed'
test_inplace_repeat_large (test.test_bigmem.ListTest) ... skipped 'not enough memory: 32.0G minimum needed'
test_inplace_repeat_small (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_insert (test.test_bigmem.ListTest) ... skipped 'not enough memory: 18.0G minimum needed'
test_pop (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_remove (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_repeat_large (test.test_bigmem.ListTest) ... skipped 'not enough memory: 48.0G minimum needed'
test_repeat_small (test.test_bigmem.ListTest) ... skipped 'not enough memory: 24.0G minimum needed'
test_repr_large (test.test_bigmem.ListTest) ... skipped 'not enough memory: 22.0G minimum needed'
test_reverse (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
test_sort (test.test_bigmem.ListTest) ... skipped 'not enough memory: 16.0G minimum needed'
---
History
Date User Action Args
2012-02-24 23:53:11vstinnersetrecipients: + vstinner, loewis, pitrou, nadeem.vawda, python-dev
2012-02-24 23:53:11vstinnersetmessageid: <1330127591.32.0.538762690764.issue14107@psf.upfronthosting.co.za>
2012-02-24 23:53:10vstinnerlinkissue14107 messages
2012-02-24 23:53:10vstinnercreate