From 2ce94b3cb4db55c981ee6f2cbe1d3e790e89a2b7 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 6 Nov 2016 17:48:49 +0100 Subject: allow to compile and run on musl based systems This is a first shot, more improvements required to allow to run more tests. --- test/stdlib/test-canon2.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/stdlib/test-canon2.c') diff --git a/test/stdlib/test-canon2.c b/test/stdlib/test-canon2.c index 4a03b2d..223459e 100644 --- a/test/stdlib/test-canon2.c +++ b/test/stdlib/test-canon2.c @@ -69,6 +69,7 @@ do_prepare (int argc, char *argv[]) int do_test (int argc, char *argv[]) { +#if defined(__GLIBC__) || defined(__UCLIBC__) char *canon; printf ("create symlinks from %s to %s and vice versa\n", name1, name2); @@ -83,4 +84,7 @@ do_test (int argc, char *argv[]) canon = canonicalize_file_name (name1); return canon != NULL || errno != ELOOP; +#else + return 23; +#endif } -- cgit v1.2.3