aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>2021-05-06 12:06:20 +0300
committerMax Reitz <mreitz@redhat.com>2021-05-14 16:14:10 +0200
commit23357b93c7bbeec65aef75f798cacbcda0ca5f4d (patch)
tree593ef0f37ebf4e2ea67b3eb5efab2ccedeead0fe /tests/unit
parent935129223ce2a2eb61c59b585869724570d3a349 (diff)
downloadqemu-23357b93c7bbeec65aef75f798cacbcda0ca5f4d.zip
qemu-23357b93c7bbeec65aef75f798cacbcda0ca5f4d.tar.gz
qemu-23357b93c7bbeec65aef75f798cacbcda0ca5f4d.tar.bz2
test-write-threshold: drop extra TestStruct structure
We don't need this extra logic: it doesn't make code simpler. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Message-Id: <20210506090621.11848-8-vsementsov@virtuozzo.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/test-write-threshold.c20
1 files changed, 3 insertions, 17 deletions
diff --git a/tests/unit/test-write-threshold.c b/tests/unit/test-write-threshold.c
index 9e9986a..49b1ef7 100644
--- a/tests/unit/test-write-threshold.c
+++ b/tests/unit/test-write-threshold.c
@@ -37,26 +37,12 @@ static void test_threshold_trigger(void)
g_assert_cmpuint(bdrv_write_threshold_get(&bs), ==, 0);
}
-typedef struct TestStruct {
- const char *name;
- void (*func)(void);
-} TestStruct;
-
int main(int argc, char **argv)
{
- size_t i;
- TestStruct tests[] = {
- { "/write-threshold/not-trigger",
- test_threshold_not_trigger },
- { "/write-threshold/trigger",
- test_threshold_trigger },
- { NULL, NULL }
- };
-
g_test_init(&argc, &argv, NULL);
- for (i = 0; tests[i].name != NULL; i++) {
- g_test_add_func(tests[i].name, tests[i].func);
- }
+ g_test_add_func("/write-threshold/not-trigger", test_threshold_not_trigger);
+ g_test_add_func("/write-threshold/trigger", test_threshold_trigger);
+
return g_test_run();
}