We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0b0c2 commit 48b0ae3Copy full SHA for 48b0ae3
memcheck/tests/filter_memcpy
@@ -1,5 +1,8 @@
1
#! /bin/sh
2
3
# mc_replace_strmem.c intercepts various memcpy glibc versions.
4
+# mc_replace_strmem.c str[n]cpy and __GI_str[n]cpy are the same.
5
./filter_stderr "$@" |
-perl -p -e "s/: memcpy\@\@?GLIBC_[.1-9]+ \(mc_replace_strmem.c:...\)/: memcpy \(mc_replace_strmem.c:...\)/"
6
+perl -p -e "s/: memcpy\@\@?GLIBC_[.1-9]+ \(mc_replace_strmem.c:...\)/: memcpy \(mc_replace_strmem.c:...\)/" |
7
+sed -e "s/: __GI_strcpy (mc_replace_strmem.c:/: strcpy (mc_replace_strmem.c:/" |
8
+sed -e "s/: __GI_strncpy (mc_replace_strmem.c:/: strncpy (mc_replace_strmem.c:/"
0 commit comments