Commit efa2246e authored by Russ Cox's avatar Russ Cox

build: rewrite to use bash time builtin

Should help windows/amd64

R=adg
CC=golang-dev
https://golang.org/cl/5500058
parent 9754d615
......@@ -34,7 +34,7 @@ if $rebuild; then
if $USE_GO_TOOL; then
echo
echo '# Package builds'
GOPATH="" time go install -a all
time GOPATH="" go install -a all
else
(xcd pkg
gomake clean
......@@ -46,7 +46,7 @@ fi
if $USE_GO_TOOL; then
echo
echo '# Package tests'
GOPATH="" time go test all -short
time GOPATH="" go test all -short
else
(xcd pkg
gomake testshort
......
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