mirror of
https://github.com/minio/minio.git
synced 2024-12-23 21:55:53 -05:00
Enable cover profile and test for split and strbyteconv
This commit is contained in:
parent
c002f90e0b
commit
a4676211cf
7
Makefile
7
Makefile
@ -13,8 +13,11 @@ build-erasure:
|
||||
build-signify:
|
||||
@cd pkgs/signify && ${MAKE} ${MAKE_OPTIONS}
|
||||
|
||||
build-split:
|
||||
@cd pkgs/split && ${MAKE} ${MAKE_OPTIONS}
|
||||
build-split: build-strbyteconv
|
||||
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkgs/split
|
||||
|
||||
build-strbyteconv:
|
||||
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkgs/strbyteconv
|
||||
|
||||
cover: build-erasure build-signify build-split
|
||||
@godep go test -race -coverprofile=cover.out github.com/minio-io/minio/pkgs/storage
|
||||
|
11
pkgs/strbyteconv/Makefile
Normal file
11
pkgs/strbyteconv/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
all: build test
|
||||
.PHONY: all
|
||||
|
||||
build:
|
||||
@godep go build
|
||||
|
||||
test: build
|
||||
@godep go test -race -coverprofile=cover.out
|
||||
|
||||
clean:
|
||||
@rm -v cover.out
|
Loading…
Reference in New Issue
Block a user