From ee05b11eb066866d445d450d02460e89076e4e39 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Wed, 3 Sep 2014 19:06:25 +0200 Subject: [PATCH] The correct option for go test is -test.run not -run Upstream-commit: 2a7770a712758e9d5071cedd8e44352953bdef72 Component: engine --- components/engine/docs/sources/contributing/devenvironment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/docs/sources/contributing/devenvironment.md b/components/engine/docs/sources/contributing/devenvironment.md index 25a80af4af..41570e537d 100644 --- a/components/engine/docs/sources/contributing/devenvironment.md +++ b/components/engine/docs/sources/contributing/devenvironment.md @@ -115,7 +115,7 @@ something like this If $TESTFLAGS is set in the environment, it is passed as extra arguments to `go test`. You can use this to select certain tests to run, e.g., - $ TESTFLAGS=`-run \^TestBuild\$` make test + $ TESTFLAGS=`-test.run \^TestBuild\$` make test If the output indicates "FAIL" and you see errors like this: