diff options
| author | John Snow | 2018-09-06 15:02:19 +0200 |
|---|---|---|
| committer | Max Reitz | 2018-09-25 15:31:15 +0200 |
| commit | e4dad4275d51b594c8abbe726a4927f6f388e427 (patch) | |
| tree | 17cc19ee9f4139e3a1680e2779e3f8bcc4505e31 /tests | |
| parent | tests/test-blockjob: remove exit callback (diff) | |
| download | qemu-e4dad4275d51b594c8abbe726a4927f6f388e427.tar.gz qemu-e4dad4275d51b594c8abbe726a4927f6f388e427.tar.xz qemu-e4dad4275d51b594c8abbe726a4927f6f388e427.zip | |
tests/test-blockjob-txn: move .exit to .clean
The exit callback in this test actually only performs cleanup.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Message-id: 20180906130225.5118-11-jsnow@redhat.com
Reviewed-by: Jeff Cody <jcody@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test-blockjob-txn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-blockjob-txn.c b/tests/test-blockjob-txn.c index ef29f35e44..86606f92b3 100644 --- a/tests/test-blockjob-txn.c +++ b/tests/test-blockjob-txn.c @@ -24,7 +24,7 @@ typedef struct { int *result; } TestBlockJob; -static void test_block_job_exit(Job *job) +static void test_block_job_clean(Job *job) { BlockJob *bjob = container_of(job, BlockJob, job); BlockDriverState *bs = blk_bs(bjob->blk); @@ -73,7 +73,7 @@ static const BlockJobDriver test_block_job_driver = { .user_resume = block_job_user_resume, .drain = block_job_drain, .run = test_block_job_run, - .exit = test_block_job_exit, + .clean = test_block_job_clean, }, }; |
