From 9333d68656743e7aab1e302f3330e1d3dedbaaf4 Mon Sep 17 00:00:00 2001 From: Nikos Tsipinakis Date: Sat, 3 Dec 2016 19:19:10 +0200 Subject: [PATCH] Use the suite_ prefix for test suites --- test/test.c | 4 ++-- test/utils.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.c b/test/test.c index 5cfd346..0e22f25 100644 --- a/test/test.c +++ b/test/test.c @@ -1,12 +1,12 @@ #include "greatest.h" -SUITE_EXTERN(utils); +SUITE_EXTERN(suite_utils); GREATEST_MAIN_DEFS(); int main(int argc, char *argv[]) { GREATEST_MAIN_BEGIN(); - RUN_SUITE(utils); + RUN_SUITE(suite_utils); GREATEST_MAIN_END(); } /* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */ diff --git a/test/utils.c b/test/utils.c index adc9cb7..1b42146 100644 --- a/test/utils.c +++ b/test/utils.c @@ -124,7 +124,7 @@ TEST test_string_strip_delimited(void) PASS(); } -SUITE(utils) +SUITE(suite_utils) { RUN_TEST(test_string_replace_char); RUN_TEST(test_string_replace_all);