From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mail-a.sr.ht; dkim=pass header.d=johnnyrichard.com header.i=@johnnyrichard.com Received: from out-188.mta1.migadu.com (out-188.mta1.migadu.com [95.215.58.188]) by mail-a.sr.ht (Postfix) with ESMTPS id 53D38202D6 for <~johnnyrichard/olang-devel@lists.sr.ht>; Sat, 24 Feb 2024 19:41:45 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=johnnyrichard.com; s=key1; t=1708803704; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=XF/nsGUwle0Xtol0U6RFgAIwcRkGgj8C3hLCawImjhA=; b=0lfCOM7IXaHp3Gf2PHs58uzRtfHXmxXNkJVJ+a8Yr+dRnoLk1/L4ylFe8u7+B7VkouLWYp GnXVAHTKyO+WrTIaXza0ARq4dV8kMswczsOfSR/I9cjxbsqePr/80ckt7jMlJZ6nhahV2X nbT3Y5Nk4dxjY0cUq3PuhGyBt5odN0aTC3yXW7fzrsyZYs9A+xxRbKkHXSXZ2a0lq47Thr ir4xstimmpDkdZMSxefFR5Jt02nIAKReMrd6BGsqg1opelsyzqT36Pp8k/V0ezkLjun88k bkxC4HMYB1dKf9jeF+LvlyfzkIciMGwoMRZpRneChY/6TST3CSZItp1ljrHPXA== From: Johnny Richard To: ~johnnyrichard/olang-devel@lists.sr.ht Cc: Johnny Richard Subject: [PATCH olang] test: fix suite name for list_test and arena_test Date: Sat, 24 Feb 2024 21:40:43 +0100 Message-ID: <20240224204055.113667-1-johnny@johnnyrichard.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-TUID: G0PbplGBC7kR Signed-off-by: Johnny Richard --- tests/unit/arena_test.c | 2 +- tests/unit/list_test.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/arena_test.c b/tests/unit/arena_test.c index 6310795..13f406f 100644 --- a/tests/unit/arena_test.c +++ b/tests/unit/arena_test.c @@ -52,7 +52,7 @@ arena_test(const MunitParameter params[], void *user_data_or_fixture) static MunitTest tests[] = { { "/arena_test", arena_test, NULL, NULL, MUNIT_TEST_OPTION_NONE, NULL }, { NULL, NULL, NULL, NULL, MUNIT_TEST_OPTION_NONE, NULL } }; -static const MunitSuite suite = { "/cli_test", tests, NULL, 1, MUNIT_SUITE_OPTION_NONE }; +static const MunitSuite suite = { "/arena", tests, NULL, 1, MUNIT_SUITE_OPTION_NONE }; int main(int argc, char *argv[]) diff --git a/tests/unit/list_test.c b/tests/unit/list_test.c index 33d867b..8b759f9 100644 --- a/tests/unit/list_test.c +++ b/tests/unit/list_test.c @@ -100,7 +100,7 @@ static MunitTest tests[] = { { "/list_append_test", list_append_test, NULL, NULL { "/list_next_test", list_next_test, NULL, NULL, MUNIT_TEST_OPTION_NONE, NULL }, { NULL, NULL, NULL, NULL, MUNIT_TEST_OPTION_NONE, NULL } }; -static const MunitSuite suite = { "/cli_test", tests, NULL, 1, MUNIT_SUITE_OPTION_NONE }; +static const MunitSuite suite = { "/list", tests, NULL, 1, MUNIT_SUITE_OPTION_NONE }; int main(int argc, char *argv[]) -- 2.43.2