From: Michael Jeanson Date: Wed, 8 Sep 2021 19:48:35 +0000 (-0400) Subject: fix: test_build tap plan X-Git-Tag: v0.14.0~57 X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=c8292aa76bf23db3b6031cd49c0e6c469d0c889d fix: test_build tap plan Change-Id: I83dc2343fe7c457a1ec0c94ed164c1365fce2bdb Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/tests/unit/test_build.c b/tests/unit/test_build.c index 4c3392d..b2786c5 100644 --- a/tests/unit/test_build.c +++ b/tests/unit/test_build.c @@ -64,10 +64,7 @@ static void test_lfstack(void) struct cds_lfs_stack s; cds_lfs_init(&s); - if (!cds_lfs_empty(&s)) - fail("cds_lfs_empty"); - else - ok(1, "cds_lfs_empty"); + ok(cds_lfs_empty(&s), "cds_lfs_empty"); } static void test_wfstack(void) @@ -75,10 +72,7 @@ static void test_wfstack(void) struct cds_wfs_stack s; cds_wfs_init(&s); - if (!cds_wfs_empty(&s)) - fail("cds_lfs_empty"); - else - ok(1, "cds_lfs_empty"); + ok(cds_wfs_empty(&s), "cds_lfs_empty"); } static void test_wfcqueue(void) @@ -87,10 +81,7 @@ static void test_wfcqueue(void) struct cds_wfcq_tail tail; cds_wfcq_init(&head, &tail); - if (!cds_wfcq_empty(&head, &tail)) - fail("cds_wfcq_empty"); - else - ok(1, "cds_wfcq_empty"); + ok(cds_wfcq_empty(&head, &tail), "cds_wfcq_empty"); } static @@ -108,9 +99,7 @@ void test_build_cds_list_head_init(void) int main(void) { - /* Need at least 1 test to make a valid TAP test plan. */ plan_tests(3); - ok(1, "dummy"); test_lfstack(); test_wfstack();