gecko/python/psutil/test
Gregory Szorc 322a12f348 Bug 930808 - Upgrade to psutil 2.1.3; r=glandium
psutil 2.1.3 is replacing psutil 1.0.1. There are numerous bug fixes and
feature enhancements in psutil worth obtaining.

Source code was obtained from
https://pypi.python.org/packages/source/p/psutil/psutil-2.1.3.tar.gz and
uncompressed into python/psutil without modification except for the
removal of the egg-info directory and the .travis.yml file.

--HG--
extra : source : 697eb6db7d96dc21e817cd27a7e46ed4ab00f9bb
2014-12-23 10:45:15 -08:00
..
__init__.py
_bsd.py Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00
_linux.py Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00
_osx.py Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00
_posix.py Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00
_sunos.py Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00
_windows.py Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00
README Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00
test_memory_leaks.py Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00
test_psutil.py Bug 930808 - Upgrade to psutil 2.1.3; r=glandium 2014-12-23 10:45:15 -08:00

- The recommended way to run tests (also on Windows) is to cd into parent
  directory and run:

    make test

- If you're on Python < 2.7 unittest2 module must be installed first:
  https://pypi.python.org/pypi/unittest2

- The main test script is test_psutil.py, which also imports platform-specific
  _*.py scripts (which should be ignored).

- test_memory_leaks.py looks for memory leaks into C extension modules and must
  be run separately with:

    make memtest