mirror of https://github.com/ceph/go-ceph
makefile: add targets for test binaries
The go test command's -c switch builds the test binary but does not execute it. It is convenient to do quick compile checks of the libraries and test code at once without having to bring up the ceph instance in the test container. This change allows one to run 'make test-bins' or 'make rbd.test' to compile but not run the test & library code. Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
parent
f72828c5b2
commit
ea016c420a
12
Makefile
12
Makefile
|
@ -26,3 +26,15 @@ check:
|
|||
# Configure project's revive checks using .revive.toml
|
||||
# See: https://github.com/mgechev/revive
|
||||
@for d in $$(go list ./... | grep -v /vendor/); do revive -config .revive.toml $${d}; done
|
||||
|
||||
# Do a quick compile only check of the tests and impliclity the
|
||||
# library code as well.
|
||||
test-binaries: cephfs.test errutil.test rados.test rbd.test
|
||||
test-bins: test-binaries
|
||||
|
||||
%.test: % force_go_build
|
||||
go test -c ./$<
|
||||
|
||||
# force_go_build is phony and builds nothing, can be used for forcing
|
||||
# go toolchain commands to always run
|
||||
.PHONY: build fmt test test-docker check test-binaries test-bins force_go_build
|
||||
|
|
Loading…
Reference in New Issue