From f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 7 Mar 2024 17:28:52 -0500 Subject: build: Build mlibc + add distclean target Signed-off-by: Ian Moffett --- lib/mlibc/tests/posix/basename.c | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 lib/mlibc/tests/posix/basename.c (limited to 'lib/mlibc/tests/posix/basename.c') diff --git a/lib/mlibc/tests/posix/basename.c b/lib/mlibc/tests/posix/basename.c deleted file mode 100644 index 260bf90..0000000 --- a/lib/mlibc/tests/posix/basename.c +++ /dev/null @@ -1,17 +0,0 @@ -#include -#include -#include - -int main() { - /* intentionally a macro: basename modifies its argument */ -#define test_string(x, expectval) do { \ - char str[] = x; \ - assert(strcmp(basename(str), expectval) == 0); \ - } while (0) - - test_string("/usr/lib", "lib"); - test_string("/usr/", "usr"); - test_string("/", "/"); - test_string(".", "."); - test_string("..", ".."); -} -- cgit v1.2.3