aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-11-12 14:28:45 -0800
committerRob Pike <r@golang.org>2009-11-12 14:28:45 -0800
commitce0a4bae41c310f96b86322007e87b2fb0a29781 (patch)
tree1721d71e79a95fe2a9fa12018918d28d4d9cc7bc
parent9549eeecd100c2c2c8d90dd1c926149d1d22d187 (diff)
downloadgo-ce0a4bae41c310f96b86322007e87b2fb0a29781.tar.gz
go-ce0a4bae41c310f96b86322007e87b2fb0a29781.zip
produce helpful error when gotest doesn't find a Makefile
Fixes #117. R=rsc, agl1 CC=golang-dev https://golang.org/cl/152107
-rwxr-xr-xsrc/cmd/gotest/gotest9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/cmd/gotest/gotest b/src/cmd/gotest/gotest
index 8d43cb7dc7..b43fe4d283 100755
--- a/src/cmd/gotest/gotest
+++ b/src/cmd/gotest/gotest
@@ -16,10 +16,15 @@ export LC_CTYPE=C
_GC=$GC # Make.$GOARCH will overwrite this
+if [ ! -f [Mm]akefile ]; then
+ echo 'please create a Makefile for gotest; see http://golang.org/doc/contribute.html (sic) for details' 1>&2
+ exit 2
+fi
+
. $GOROOT/src/Make.$GOARCH
if [ -z "$O" ]; then
echo 'missing $O - maybe no Make.$GOARCH?' 1>&2
- exit 1
+ exit 2
fi
E=""
@@ -66,7 +71,7 @@ esac
case "x$gofiles" in
x)
echo 'no test files found' 1>&2
- exit 1
+ exit 2
esac
# Run any commands given in sources, like