Use the suite_ prefix for test suites
This commit is contained in:
parent
bae745b1fd
commit
9333d68656
@ -1,12 +1,12 @@
|
|||||||
#include "greatest.h"
|
#include "greatest.h"
|
||||||
|
|
||||||
SUITE_EXTERN(utils);
|
SUITE_EXTERN(suite_utils);
|
||||||
|
|
||||||
GREATEST_MAIN_DEFS();
|
GREATEST_MAIN_DEFS();
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
GREATEST_MAIN_BEGIN();
|
GREATEST_MAIN_BEGIN();
|
||||||
RUN_SUITE(utils);
|
RUN_SUITE(suite_utils);
|
||||||
GREATEST_MAIN_END();
|
GREATEST_MAIN_END();
|
||||||
}
|
}
|
||||||
/* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|
/* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|
||||||
|
@ -124,7 +124,7 @@ TEST test_string_strip_delimited(void)
|
|||||||
PASS();
|
PASS();
|
||||||
}
|
}
|
||||||
|
|
||||||
SUITE(utils)
|
SUITE(suite_utils)
|
||||||
{
|
{
|
||||||
RUN_TEST(test_string_replace_char);
|
RUN_TEST(test_string_replace_char);
|
||||||
RUN_TEST(test_string_replace_all);
|
RUN_TEST(test_string_replace_all);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user