summaryrefslogtreecommitdiff
path: root/vendor/github.com/modern-go/reflect2/test.sh
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-09-13 17:25:11 +0000
committerGitHub <noreply@github.com>2021-09-13 17:25:11 +0000
commit9ae947654feaa9f26ebfb7978f3d0440b11ea5f7 (patch)
tree8de0752b1909fd58497ac8f5dd9551a53dbb709b /vendor/github.com/modern-go/reflect2/test.sh
parent73422de08d85d790397fe821f5fc6d5a05e30643 (diff)
downloadpodman-9ae947654feaa9f26ebfb7978f3d0440b11ea5f7.tar.gz
podman-9ae947654feaa9f26ebfb7978f3d0440b11ea5f7.tar.bz2
podman-9ae947654feaa9f26ebfb7978f3d0440b11ea5f7.zip
Bump github.com/json-iterator/go from 1.1.11 to 1.1.12
Bumps [github.com/json-iterator/go](https://github.com/json-iterator/go) from 1.1.11 to 1.1.12. - [Release notes](https://github.com/json-iterator/go/releases) - [Commits](https://github.com/json-iterator/go/compare/v1.1.11...v1.1.12) --- updated-dependencies: - dependency-name: github.com/json-iterator/go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/modern-go/reflect2/test.sh')
-rw-r--r--vendor/github.com/modern-go/reflect2/test.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/vendor/github.com/modern-go/reflect2/test.sh b/vendor/github.com/modern-go/reflect2/test.sh
deleted file mode 100644
index 3d2b9768c..000000000
--- a/vendor/github.com/modern-go/reflect2/test.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-echo "" > coverage.txt
-
-for d in $(go list github.com/modern-go/reflect2-tests/... | grep -v vendor); do
- go test -coverprofile=profile.out -coverpkg=github.com/modern-go/reflect2 $d
- if [ -f profile.out ]; then
- cat profile.out >> coverage.txt
- rm profile.out
- fi
-done