diff options
Diffstat (limited to 'test/git/async/test_pool.py')
-rw-r--r-- | test/git/async/test_pool.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/git/async/test_pool.py b/test/git/async/test_pool.py index cccafddc..202fdb66 100644 --- a/test/git/async/test_pool.py +++ b/test/git/async/test_pool.py @@ -57,6 +57,10 @@ class TestThreadTaskNode(InputIteratorThreadTask): return self +class TestThreadFailureNode(TestThreadTaskNode): + """Fails after X items""" + + class TestThreadPool(TestBase): max_threads = cpu_count() |