This website requires JavaScript.
Explore
Get Started
openstack
/
deb-python-eventlet
Code
Issues
Proposed changes
Files
488f4abd4292936064ae308e7fe989e46bbdff9c
deb-python-eventlet
/
tests
History
Ryan Williams
488f4abd42
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
..
stdlib
Moved some copy-and-paste test code into stdlib and did the monkeypatching thing on it. Improved nose-friendliness of dbpool and tpool tests.
2009-08-24 17:11:22 -07:00
__init__.py
Slight improvement to hide twisted tests from people who don't have it.
2009-08-24 12:19:43 -07:00
api_test.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
coros_test.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
db_pool_test.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
generate_report.py
Fixed broken saranwrap test by exposing the importerror to the parent process; a better overall design. Fixed some mistakes in the poll module. Slightly loosened sqlite3 dependency so pysqlite2 is a substitute.
2009-08-07 00:18:16 -07:00
greenio_test.py
Mask in poll changed because INVAL is handled separately. test_sendall clarified.
2009-08-17 18:13:40 -07:00
parse_results.py
Fixed broken saranwrap test by exposing the importerror to the parent process; a better overall design. Fixed some mistakes in the poll module. Slightly loosened sqlite3 dependency so pysqlite2 is a substitute.
2009-08-07 00:18:16 -07:00
pools_test.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
processes_test.py
Added @skipped decorator in tests, hopefully we don't use it too much. Replaced a bunch of skipped-by-renaming tests with @skipped decorator. Removed the silly timing-sensitive test in processes_test.py.
2009-08-15 10:56:21 -07:00
README
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
record_results.py
Removed exit_unless_* methods, fixed the stuff that depended on them.
2009-08-14 18:54:40 -07:00
runall.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
saranwrap_test.py
Unskipped unbroken test. :-)
2009-08-23 21:04:27 -07:00
test__api_timeout.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__coros_queue.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__coros_semaphore.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__doctests.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__event.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__greenness.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__hub.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
test__pool.py
Added waiting method back to pool.Pool that was lost, plus a unit test so it doesn't get lost again.
2009-08-14 17:18:56 -07:00
test__proc.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__refcount.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__socket_errors.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__timers.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__twistedutil_protocol.py
Slight improvement to hide twisted tests from people who don't have it.
2009-08-24 12:19:43 -07:00
test__twistedutil.py
Removed exit_unless_* methods, fixed the stuff that depended on them.
2009-08-14 18:54:40 -07:00
test_server.crt
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test_server.key
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test_support.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test_thread__boundedsem.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test_thread.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test_threading_local.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test_timeout.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
timer_test.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
tpool_test.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
with_eventlet.py
Full duplex for select hub. tcp_server has to be changed because we no longer raise EPIPE into waiting coroutines when closing a socket. api_test was correspondingly changed so it still worked. TestCloseSocketWhilePolling was removed because it was testing no-longer-existing behavior. add_descriptor is gone, replaced by add_reader and add_writer.
2009-08-02 23:01:34 -07:00
with_timeout.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
wsgi_test.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
README
use 'kdiff3 python2.5/Lib/test .' to see all the differences