Commit d7402cea authored by Russ Cox's avatar Russ Cox

gotest: stop if the // gotest commands fail

R=r
https://golang.org/cl/166067
parent 2807621d
......@@ -77,7 +77,7 @@ esac
# Run any commands given in sources, like
# // gotest: $GC foo.go
# to build any test-only dependencies.
sed -n 's/^\/\/ gotest: //p' $gofiles | sh
sed -n 's/^\/\/ gotest: //p' $gofiles | sh -e || exit 1
# Split $gofiles into external gofiles (those in *_test packages)
# and internal ones (those in the main package).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment