aboutsummaryrefslogtreecommitdiff
path: root/test/linkx_run.go
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2014-12-18 09:33:44 -0800
committerJosh Bleecher Snyder <josharian@gmail.com>2014-12-18 17:41:27 +0000
commit8e0686a07104f78d182ad6e63f1575b19ff6e1b9 (patch)
tree9db22565a9ad21c88774de05c48c888994cab4b8 /test/linkx_run.go
parent24bf8f62be681f5c2d23b8faf2816bc48ea81ace (diff)
downloadgo-8e0686a07104f78d182ad6e63f1575b19ff6e1b9.tar.gz
go-8e0686a07104f78d182ad6e63f1575b19ff6e1b9.zip
test: add missing linkx test
This test was added in CL 151000043. It got lost in CL 144630044. Change-Id: I318ab11be8e3e7489fc1395457c029c8bdb2aa41 Reviewed-on: https://go-review.googlesource.com/1773 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'test/linkx_run.go')
-rw-r--r--test/linkx_run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/linkx_run.go b/test/linkx_run.go
index 5b67ce7d3d..11b66ed5a9 100644
--- a/test/linkx_run.go
+++ b/test/linkx_run.go
@@ -16,7 +16,7 @@ import (
)
func main() {
- cmd := exec.Command("go", "run", "-ldflags=-X main.tbd hello -X main.overwrite trumped", "linkx.go")
+ cmd := exec.Command("go", "run", "-ldflags=-X main.tbd hello -X main.overwrite trumped -X main.nosuchsymbol neverseen", "linkx.go")
out, err := cmd.CombinedOutput()
if err != nil {
fmt.Println(string(out))