summaryrefslogtreecommitdiff
path: root/examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-03-06 17:40:35 +0100
committerToni Uhlig <matzeton@googlemail.com>2022-03-06 17:40:35 +0100
commit29c72fb30bb7d5614c0a8ebb73bee2ac7eca6608 (patch)
tree8a58c288c11d6e3be5c4de1651d635776c8efb68 /examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh
parent46f68501d575431656b5254a4bda8acb2982ab77 (diff)
Removed go-dashboard example.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh')
-rw-r--r--examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh b/examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh
deleted file mode 100644
index 012162b07..000000000
--- a/examples/go-dashboard/src/github.com/mattn/go-runewidth/go.test.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-echo "" > coverage.txt
-
-for d in $(go list ./... | grep -v vendor); do
- go test -race -coverprofile=profile.out -covermode=atomic "$d"
- if [ -f profile.out ]; then
- cat profile.out >> coverage.txt
- rm profile.out
- fi
-done