1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 17:36:38 +08:00

Merge pull request #4653 from ipfs/fix/4647

document make targets
This commit is contained in:
Whyrusleeping
2018-02-07 12:38:53 -08:00
committed by GitHub
2 changed files with 9 additions and 12 deletions

View File

@ -142,15 +142,15 @@ help:
@echo '' @echo ''
@echo 'TESTING TARGETS:' @echo 'TESTING TARGETS:'
@echo '' @echo ''
@echo ' test - Run expensive tests' @echo ' test - Run all tests'
@echo ' test_short - Run short tests and short sharness tests' @echo ' test_short - Run short go tests and short sharness tests'
@echo ' test_go_short' @echo ' test_go_short - Run short go tests'
@echo ' test_go_expensive' @echo ' test_go_test - Run all go tests'
@echo ' test_go_race' @echo ' test_go_expensive - Run all go tests and compile on all platforms'
@echo ' test_go_megacheck - Run the `megacheck` vetting tool' @echo ' test_go_race - Run go tests with the race detector enabled'
@echo ' test_sharness_short' @echo ' test_go_megacheck - Run the `megacheck` vetting tool'
@echo ' test_sharness_expensive' @echo ' test_sharness_short - Run short sharness tests'
@echo ' test_sharness_race' @echo ' test_sharness_expensive - Run all sharness tests'
@echo ' coverage - Collects coverage info from unit tests and sharness' @echo ' coverage - Collects coverage info from unit tests and sharness'
@echo @echo
.PHONY: help .PHONY: help

View File

@ -60,9 +60,6 @@ test_sharness_expensive: export TEST_EXPENSIVE=1
test_sharness_expensive: test_sharness_short test_sharness_expensive: test_sharness_short
.PHONY: test_sharness_expensive .PHONY: test_sharness_expensive
test_sharness_race: GOFLAGS += -race
.PHONY: test_sharness_race
TEST += test_sharness_expensive TEST += test_sharness_expensive
TEST_SHORT += test_sharness_short TEST_SHORT += test_sharness_short