Skip to content

Commit

Permalink
libc: string.h: add cmp functions tests
Browse files Browse the repository at this point in the history
JIRA: CI-231
  • Loading branch information
maska989 committed Jun 9, 2023
1 parent 1b50fd2 commit 96eff61
Show file tree
Hide file tree
Showing 2 changed files with 455 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libc/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ void runner(void)
RUN_TEST_GROUP(stdio_scanf_squareBrackets);
RUN_TEST_GROUP(stdio_scanf_rest);
RUN_TEST_GROUP(string_chr);
RUN_TEST_GROUP(mem_cmp);
RUN_TEST_GROUP(string_memset);
RUN_TEST_GROUP(string_memmove);
RUN_TEST_GROUP(string_memmove_big);
Expand All @@ -62,6 +63,10 @@ void runner(void)
RUN_TEST_GROUP(string_strcpy_stpcpy);
RUN_TEST_GROUP(string_strlcpy);
RUN_TEST_GROUP(string_strlcat);
RUN_TEST_GROUP(string_memcmp);
RUN_TEST_GROUP(string_strncmp);
RUN_TEST_GROUP(string_strcmp);
RUN_TEST_GROUP(string_strcoll);
}


Expand Down
Loading

0 comments on commit 96eff61

Please sign in to comment.