From: Josh Bleecher Snyder Date: Thu, 18 Dec 2014 17:33:44 +0000 (-0800) Subject: test: add missing linkx test X-Git-Tag: go1.5beta1~2600 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8e0686a07104f78d182ad6e63f1575b19ff6e1b9;p=gostls13.git 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 --- 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))