summaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/test.sh b/test.sh
deleted file mode 100755
index 84b913f..0000000
--- a/test.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-if [ ! -f tools/windowsconstgen.go ]; then
- echo error: $0 must be run from the package source root 1>&2
- exit 1
-fi
-set -e
-if [ x$GOOS = xwindows ]; then
- # have to invoke go run with the host $GOOS/$GOARCH
- GOOS= GOARCH= go run tools/windowsconstgen.go . 386 "$@"
- GOOS= GOARCH= go run tools/windowsconstgen.go . amd64 "$@"
-fi
-cd test
-go build "$@"