about summary refs log tree commit diff
path: root/string/test-memmove.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2016-05-18 05:48:56 -0700
committerH.J. Lu <hjl.tools@gmail.com>2016-05-18 05:51:59 -0700
commit447720b03b4ac37cbc1367bf3aad56711a30a307 (patch)
tree2666c0567dfddb5d4dec23c9516635e707415b71 /string/test-memmove.c
parent0014680d6a5bdeb4fe17682450105ebed19f35da (diff)
downloadglibc-447720b03b4ac37cbc1367bf3aad56711a30a307.tar.gz
glibc-447720b03b4ac37cbc1367bf3aad56711a30a307.tar.xz
glibc-447720b03b4ac37cbc1367bf3aad56711a30a307.zip
Clear destination buffer updated by the previous run
Clear the destination buffer updated by the previous run in bench-memcpy.c
and test-memcpy.c to catch the error when the following implementations do
not copy anything.

	[BZ #19907]
	* benchtests/bench-memcpy.c (do_one_test): Clear the destination
	buffer updated by the previous run.
	* string/test-memcpy.c (do_one_test): Likewise.
	* benchtests/bench-memmove.c (do_one_test): Add a comment.
	* string/test-memmove.c (do_one_test): Likewise.
Diffstat (limited to 'string/test-memmove.c')
-rw-r--r--string/test-memmove.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/string/test-memmove.c b/string/test-memmove.c
index d2ab3f3c8d..43433297e5 100644
--- a/string/test-memmove.c
+++ b/string/test-memmove.c
@@ -68,6 +68,7 @@ static void
 do_one_test (impl_t *impl, char *dst, char *src, const char *orig_src,
 	     size_t len)
 {
+  /* This also clears the destination buffer set by the previous run.  */
   memcpy (src, orig_src, len);
 #ifdef TEST_BCOPY
   CALL (impl, src, dst, len);