summaryrefslogtreecommitdiff
path: root/tests/bin
diff options
context:
space:
mode:
authorkamil <kamil@NetBSD.org>2019-08-15 08:24:11 +0000
committerkamil <kamil@NetBSD.org>2019-08-15 08:24:11 +0000
commit059461f7d93db548f3c8ac4a09b8f278f13b0920 (patch)
tree27cc670c8075435c7a9ec1e84d97bb1d1031443a /tests/bin
parente2150c0435c7fb4a3d6a7017d62fdc84b4bb5354 (diff)
Avoid symbol clashes in bin/df under MKSANITIZER
Remove symbol conflicts for: __getmntinfo13
Diffstat (limited to 'tests/bin')
-rw-r--r--tests/bin/df/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/bin/df/Makefile b/tests/bin/df/Makefile
index 1a65f60a67a..219e4288409 100644
--- a/tests/bin/df/Makefile
+++ b/tests/bin/df/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2012/03/17 16:33:11 jruoho Exp $
+# $NetBSD: Makefile,v 1.2 2019/08/15 08:24:11 kamil Exp $
NOMAN= # defined
@@ -24,4 +24,6 @@ CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libc/include
SRCS+= humanize_number.c
.endif
+SANITIZER_RENAME_SYMBOL+= __getmntinfo13
+
.include <bsd.test.mk>