diff options
author | Sam James <sam@gentoo.org> | 2021-03-20 18:01:40 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2021-03-20 18:03:15 -0700 |
commit | 550f29cfd254e85490662418fea49e95a2eae8a4 (patch) | |
tree | b40680d0f7c92b14920253df51888a5b5a23464e /net-dns/coredns | |
parent | dev-libs/check: Fix pkgconfig file's libdir (diff) | |
download | gentoo-550f29cfd254e85490662418fea49e95a2eae8a4.tar.gz gentoo-550f29cfd254e85490662418fea49e95a2eae8a4.tar.bz2 gentoo-550f29cfd254e85490662418fea49e95a2eae8a4.zip |
net-dns/coredns: Fix GOFLAGS spelling in src_test
See: https://github.com/gentoo/gentoo/pull/20023#discussion_r598197455
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'net-dns/coredns')
-rw-r--r-- | net-dns/coredns/coredns-1.7.0.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-dns/coredns/coredns-1.7.0.ebuild b/net-dns/coredns/coredns-1.7.0.ebuild index 22d3a5bb3415..cf1d8ce7c484 100644 --- a/net-dns/coredns/coredns-1.7.0.ebuild +++ b/net-dns/coredns/coredns-1.7.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -872,7 +872,7 @@ src_test() { local working_tests_re="$( # get list of all test: - { GOFLLAGS="-mod=readonly" go test -list . ./... || + { GOFLAGS="-mod=readonly" go test -list . ./... || die "Can't get list of tests"; } | # skip "no tests" messages as well as know failures: grep -v -E " |${known_fail_re}" | |