1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2025-07-26 08:10:27 +00:00

*: rework the test tools, so no dep is ignored

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2022-04-03 23:15:40 -04:00
parent 588282d9ad
commit f32ba81c5e
Signed by: vbatts
GPG key ID: 10937E57733F1362
39 changed files with 2551 additions and 37 deletions

View file

@ -57,10 +57,10 @@ cli.test: .cli.test
CLEAN_FILES += .cli.test .cli.test.tags
.cli.test: $(BUILD) $(wildcard ./test/cli/*.sh)
@go run ./test/cli.go ./test/cli/*.sh && touch $@
@go run ./test/cli-test/main.go ./test/cli/*.sh && touch $@
.cli.test.tags: $(BUILD) $(wildcard ./test/cli/*.sh)
@set -e ; for tag in $(TAGS) ; do go run -tags $$tag ./test/cli.go ./test/cli/*.sh ; done && touch $@
@set -e ; for tag in $(TAGS) ; do go run -tags $$tag ./test/cli-test/main.go ./test/cli/*.sh ; done && touch $@
.PHONY: build
build: $(BUILD)