Sign in
chromium
/
external
/
github.com
/
smartystreets
/
assertions
/
refs/heads/upstream/master
/
.
/
Makefile
blob: 5c27b7ba0ddc4b5945861701f22ec3e5455a9505 [
file
] [
log
] [
blame
] [
edit
]
#!/usr/bin/make -f
test
:
fmt
go test
-
timeout
=
1s
-
race
-
cover
-
short
-
count
=
1
./...
fmt
:
go fmt
./...
compile
:
go build
./...
build
:
test compile
.
PHONY
:
test compile build