On Tue, 14 Feb 2006, Richard Fish wrote:

Also, to test whether your system can make large memory allocations, you can do:

python -c "s='x'*(4*(1024*1024))"
python -c "s='x'*(8*(1024*1024))"
python -c "s='x'*(16*(1024*1024))"
python -c "s='x'*(32*(1024*1024))"
python -c "s='x'*(64*(1024*1024))"
python -c "s='x'*(128*(1024*1024))"
python -c "s='x'*(256*(1024*1024))"

The above commands will try to allocate memory from 4M to 256M.

-Richard


        [EMAIL PROTECTED] ~ $ python -c "s='x'*(4*(1024*1024))"
        ~
        [EMAIL PROTECTED] ~ $ python -c "s='x'*(8*(1024*1024))"
        ~
        [EMAIL PROTECTED] ~ $ python -c "s='x'*(16*(1024*1024))"
        ~
        [EMAIL PROTECTED] ~ $ python -c "s='x'*(32*(1024*1024))"
        ~
        [EMAIL PROTECTED] ~ $ python -c "s='x'*(64*(1024*1024))"
        Traceback (most recent call last):
          File "<string>", line 1, in ?
        MemoryError
        ~
        [EMAIL PROTECTED] ~ $ python -c "s='x'*(128*(1024*1024))"
        Traceback (most recent call last):
          File "<string>", line 1, in ?
        MemoryError
        ~
        [EMAIL PROTECTED] ~ $ python -c "s='x'*(256*(1024*1024))"
        Traceback (most recent call last):
          File "<string>", line 1, in ?
        MemoryError

<SIGH>

Thanks,

Jorge
--
gentoo-user@gentoo.org mailing list

Reply via email to