Chromium Code Reviews| Index: ct/Makefile |
| diff --git a/ct/Makefile b/ct/Makefile |
| index a4c88c028ea64470dafc1535e42194a42c138d87..806bfd2012c9dd2a091122aa81fb31e6bf293f76 100644 |
| --- a/ct/Makefile |
| +++ b/ct/Makefile |
| @@ -3,9 +3,14 @@ |
| run_command: |
| go install -v ./go/master_scripts/run_command/ |
| +# This is the quick version triggered by the presubmit script. |
| .PHONY: testgo |
| testgo: |
| - go test ./... -v |
| + go test ./go/... -v -test.short |
| + |
| +.PHONY: test |
| +test: |
| + go test ./go/... |
| .PHONY: all |
| all: run_command |