blob: 9f26e11f14ae06be5a89d06aee1e1568e8abcb10 [file] [log] [blame]
# Copyright 2021 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
GOTESTFLAGS ?= -count 20
.PHONY: default
default: build
.PHONY:
build:
@go vet ./...
@go test $(GOTESTFLAGS) ./...
go build ./...
.PHONY:
test-slow:
go test ./... $(GOTESTFLAGS) -p 1
.PHONY: gen
gen:
@find . -name '*.pb.go' -delete
go generate ./...