summaryrefslogtreecommitdiff
path: root/test/stdlib/test-canon2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/stdlib/test-canon2.c')
-rw-r--r--test/stdlib/test-canon2.c4
1 files changed, 4 insertions, 0 deletions
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
}