aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/json-iterator/go/test.sh
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-06-17 11:50:19 +0200
committerTaras Madan <tarasmadan@google.com>2024-06-20 09:22:00 +0000
commitc576ee0969cd731f1a1543712b62a4933480136e (patch)
tree9a44d2537287b0519470c9fe6d242963fdedd7f7 /vendor/github.com/json-iterator/go/test.sh
parent41b7e219b69c98529757e036f4b8fb1e9fa77040 (diff)
vendor: spanner
Diffstat (limited to 'vendor/github.com/json-iterator/go/test.sh')
-rw-r--r--vendor/github.com/json-iterator/go/test.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/github.com/json-iterator/go/test.sh b/vendor/github.com/json-iterator/go/test.sh
new file mode 100644
index 000000000..f4e7c0b2c
--- /dev/null
+++ b/vendor/github.com/json-iterator/go/test.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+set -e
+echo "" > coverage.txt
+
+for d in $(go list ./... | grep -v vendor); do
+ go test -coverprofile=profile.out -coverpkg=github.com/json-iterator/go $d
+ if [ -f profile.out ]; then
+ cat profile.out >> coverage.txt
+ rm profile.out
+ fi
+done