History log of /netbsd-src/tests/rump/kernspace/threadpool.c (Results 1 – 6 of 6)
Revision Date Author Comments
# 82befdcb 02-Feb-2024 andvar <andvar@NetBSD.org>

s/shold/should/


# 9e7dc06b 04-Jan-2019 thorpej <thorpej@NetBSD.org>

Fix a silly bug the "cancel thrash" test: the exit condition for the
job was never set, and so if the job actually got started before the
cancellation request came in, it would never finish and the c

Fix a silly bug the "cancel thrash" test: the exit condition for the
job was never set, and so if the job actually got started before the
cancellation request came in, it would never finish and the cancellation
request would just hang forever.

Should address a spurious automated test failure reported by kre@.

show more ...


# 032c1d01 28-Dec-2018 thorpej <thorpej@NetBSD.org>

Add a test case that exercises repeated sceduling and cancelling of a job,
with periodic dropping of the interlock.


# fd471022 26-Dec-2018 thorpej <thorpej@NetBSD.org>

- De-opaque'ify struct threadpool_job.
- De-_t'ify all of the structure types.

No functional chage, no ABI change (verified with old rump unit test
before and after new librump.so).

Per Taylor's re

- De-opaque'ify struct threadpool_job.
- De-_t'ify all of the structure types.

No functional chage, no ABI change (verified with old rump unit test
before and after new librump.so).

Per Taylor's request.

show more ...


# 41d71c6b 25-Dec-2018 thorpej <thorpej@NetBSD.org>

Include some non-critical-but-still-for-correctness lines of code
in the cancellation unit test. (I could have sworn I actually typed
these lines, no really...)


# 77118773 24-Dec-2018 thorpej <thorpej@NetBSD.org>

Add rump-based test cases for threadpool(9).