classification
Title: test_bigmem broken
Type: behavior Stage:
Components: Tests Versions: Python 3.0
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: pitrou
Priority: critical Keywords:

Created on 2008-08-27 13:15 by pitrou, last changed 2008-08-27 13:18 by pitrou.

Messages
msg72027 (view) Author: Antoine Pitrou (pitrou) Date: 2008-08-27 13:15
./python3 Lib/test/regrtest.py -v -M 2.1Gb test_bigmem 
test_bigmem

[snip skipped tests]

======================================================================
ERROR: test_center_unicode (test.test_bigmem.StrTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/antoine/py3k/__svn__/Lib/test/support.py", line 682, in
wrapper
    return f(self, maxsize)
  File "/home/antoine/py3k/__svn__/Lib/test/test_bigmem.py", line 60, in
test_center_unicode
    s = SUBSTR.center(size)
MemoryError

======================================================================
ERROR: test_encode_raw_unicode_escape (test.test_bigmem.StrTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/antoine/py3k/__svn__/Lib/test/support.py", line 682, in
wrapper
    return f(self, maxsize)
  File "/home/antoine/py3k/__svn__/Lib/test/test_bigmem.py", line 102,
in test_encode_raw_unicode_escape
    return self.basic_encode_test(size, 'raw_unicode_escape')
  File "/home/antoine/py3k/__svn__/Lib/test/test_bigmem.py", line 92, in
basic_encode_test
    s = c * size
TypeError: can't multiply sequence by non-int of type 'float'

----------------------------------------------------------------------
Ran 88 tests in 0.225s
msg72028 (view) Author: Antoine Pitrou (pitrou) Date: 2008-08-27 13:18
It would be nice if at least one of the buildbots could run the bigmem
tests.
History
Date User Action Args
2008-08-27 13:18:14pitrousetmessages: + msg72028
2008-08-27 13:15:26pitroucreate