aboutsummaryrefslogtreecommitdiffstats
path: root/test-coroutine.c
AgeCommit message (Collapse)AuthorFilesLines
2011-08-02coroutine: add test-coroutine --benchmark-lifecycleStefan Hajnoczi1-0/+30
Add a microbenchmark for coroutine create, enter, and return (aka lifecycle). This is a useful benchmark because users are expected to create many coroutines, one per I/O request for example, and we therefore need to provide good performance in that scenario. To run: make test-coroutine ./test-coroutine --benchmark-lifecycle 20000000 This will do 20,000,000 coroutine create, enter, return iterations and print the resulting time. Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
2011-08-02coroutine: add test-coroutine automated testsStefan Hajnoczi1-0/+162
To run automated tests for coroutines: make test-coroutine ./test-coroutine On success the program terminates with exit status 0. On failure an error message is written to stderr and the program exits with exit status 1. Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>