about summary refs log tree commit diff
path: root/string
diff options
context:
space:
mode:
Diffstat (limited to 'string')
-rw-r--r--string/tester.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/string/tester.c b/string/tester.c
index dab570500c..0a69d2639f 100644
--- a/string/tester.c
+++ b/string/tester.c
@@ -174,11 +174,13 @@ test_strcpy (void)
   SIMPLE_COPY(strcpy, 15, "555555555555555", 56);
   SIMPLE_COPY(strcpy, 16, "6666666666666666", 57);
 
+#if 0
   /* Simple test using implicitly coerced `void *' arguments.  */
   const void *src = "frobozz";
   void *dst = one;
   check (strcpy (dst, src) == dst, 1);
   equal (dst, "frobozz", 2);
+#endif
 }
 
 static void