Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 .PHONY: run_command | 2 .PHONY: run_command |
| 3 run_command: | 3 run_command: |
| 4 go install -v ./go/master_scripts/run_command/ | 4 go install -v ./go/master_scripts/run_command/ |
| 5 | 5 |
| 6 # This is the quick version triggered by the presubmit script. | |
| 6 .PHONY: testgo | 7 .PHONY: testgo |
| 7 testgo: | 8 testgo: |
| 8 » go test ./... -v | 9 » go test ./go/... -v -test.short |
| 10 | |
| 11 .PHONY: test | |
| 12 test: | |
| 13 » go test ./go/... | |
| 9 | 14 |
| 10 .PHONY: all | 15 .PHONY: all |
| 11 all: run_command | 16 all: run_command |
| OLD | NEW |