projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3bb6a04
)
(test_strcpy): Disable last added strcpy until it is fixed.
author
drepper
<drepper>
Sun, 12 Jan 2003 10:08:02 +0000
(10:08 +0000)
committer
drepper
<drepper>
Sun, 12 Jan 2003 10:08:02 +0000
(10:08 +0000)
string/tester.c
patch
|
blob
|
history
diff --git
a/string/tester.c
b/string/tester.c
index
dab5705
..
0a69d26
100644
(file)
--- 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