diff options
author | asomers <asomers@FreeBSD.org> | 2017-05-30 21:03:44 +0000 |
---|---|---|
committer | asomers <asomers@FreeBSD.org> | 2017-05-30 21:03:44 +0000 |
commit | 1befd144180825512ba616cbe57111339e725319 (patch) | |
tree | 20e69e6e16a616826299c69df5e6942f1ab164b1 /lib/libutil | |
parent | bc305a920e1425804974eb4cc413f04f380d53b4 (diff) | |
download | FreeBSD-src-1befd144180825512ba616cbe57111339e725319.zip FreeBSD-src-1befd144180825512ba616cbe57111339e725319.tar.gz |
MFC r315032-r315036, r315039, r315041
r315032:
Increase WARNS for iconv tests
ATF tests have a default WARNS of 0, unlike other usermode programs.
Reviewed by: ngie
Sponsored by: Spectra Logic Corporation
Differential Revision: https://reviews.freebsd.org/D9933
r315033:
Increase WARNS for nss tests
ATF tests have a default WARNS of 0, unlike other usermode programs.
Reviewed by: ngie
Sponsored by: Spectra Logic Corporation
Differential Revision: https://reviews.freebsd.org/D9933
r315034:
Document that the msun tests require WARNS=0
ATF tests have a default WARNS of 0, unlike other usermode programs. This
change is technically a noop, but it documents that the msun tests don't
work with any warnings enabled, at least not on all architectures.
Reviewed by: ngie
Sponsored by: Spectra Logic Corporation
Differential Revision: https://reviews.freebsd.org/D9933
r315035:
Increase WARNS for libcrypt tests
ATF tests have a default WARNS of 0, unlike other usermode programs.
Reviewed by: ngie, julian
Sponsored by: Spectra Logic Corporation
Differential Revision: https://reviews.freebsd.org/D9933
r315036:
Increase WARNS for libmp tests
ATF tests have a default WARNS of 0, unlike other usermode programs.
Reviewed by: ngie, julian
Sponsored by: Spectra Logic Corporation
Differential Revision: https://reviews.freebsd.org/D9933
r315039:
Increase WARNS for libutil tests
ATF tests have a default WARNS of 0, unlike other usermode programs.
Reviewed by: ngie, julian
Sponsored by: Spectra Logic Corporation
Differential Revision: https://reviews.freebsd.org/D9933
r315041:
Increase WARNS for pw tests
ATF tests have a default WARNS of 0, unlike other usermode programs.
Reviewed by: ngie, julian
Sponsored by: Spectra Logic Corporation
Differential Revision: https://reviews.freebsd.org/D9933
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/tests/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libutil/tests/Makefile b/lib/libutil/tests/Makefile index 92540c9..dd7f045 100644 --- a/lib/libutil/tests/Makefile +++ b/lib/libutil/tests/Makefile @@ -9,5 +9,6 @@ TAP_TESTS_C+= trimdomain-nodomain_test DPADD+= ${LIBUTIL} LDADD+= -lutil +WARNS?= 2 .include <bsd.test.mk> |