diff options
| author | Russ Cox <rsc@golang.org> | 2019-05-15 14:33:16 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2019-05-16 03:25:05 +0000 |
| commit | 80b393e8b2f708782887e311f598526c4e6700ee (patch) | |
| tree | 7892ff991cf51229449a9272a609711ddd5a8d26 /src/cmd/dist | |
| parent | a6a0ed3c4760fb6c59c55c1a01ddba8a558e04eb (diff) | |
| download | go-80b393e8b2f708782887e311f598526c4e6700ee.tar.xz | |
cmd/dist: say 'go test .' instead of 'go test' in a few places for cleaner output
This just makes all.bash a bit less chatty.
Change-Id: I7d2ecabf0c7d8df2065d7052718f611bb2907801
Reviewed-on: https://go-review.googlesource.com/c/go/+/177418
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/cmd/dist')
| -rw-r--r-- | src/cmd/dist/test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 54d9a644ba..56ab64b8cf 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -656,8 +656,8 @@ func (t *tester) registerTests() { // recompile the entire standard library. If make.bash ran with // special -gcflags, that's not true. if t.cgoEnabled && gogcflags == "" { - t.registerTest("testso", "../misc/cgo/testso", t.goTest(), t.timeout(600)) - t.registerTest("testsovar", "../misc/cgo/testsovar", t.goTest(), t.timeout(600)) + t.registerTest("testso", "../misc/cgo/testso", t.goTest(), t.timeout(600), ".") + t.registerTest("testsovar", "../misc/cgo/testsovar", t.goTest(), t.timeout(600), ".") if t.supportedBuildmode("c-archive") { t.registerHostTest("testcarchive", "../misc/cgo/testcarchive", "misc/cgo/testcarchive", ".") } @@ -665,10 +665,10 @@ func (t *tester) registerTests() { t.registerHostTest("testcshared", "../misc/cgo/testcshared", "misc/cgo/testcshared", ".") } if t.supportedBuildmode("shared") { - t.registerTest("testshared", "../misc/cgo/testshared", t.goTest(), t.timeout(600)) + t.registerTest("testshared", "../misc/cgo/testshared", t.goTest(), t.timeout(600), ".") } if t.supportedBuildmode("plugin") { - t.registerTest("testplugin", "../misc/cgo/testplugin", t.goTest(), t.timeout(600)) + t.registerTest("testplugin", "../misc/cgo/testplugin", t.goTest(), t.timeout(600), ".") } if gohostos == "linux" && goarch == "amd64" { t.registerTest("testasan", "../misc/cgo/testasan", "go", "run", "main.go") |
