summaryrefslogtreecommitdiff
path: root/test/linkx_run.go
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2014-11-06 15:14:08 -0500
committerRuss Cox <rsc@golang.org>2014-11-06 15:14:08 -0500
commit9b5444420cec4b576aff179f632ec60be64fd7f2 (patch)
treecb95eb1baecf6595d52e706b0f357d80a87934ac /test/linkx_run.go
parent5b110c7b08946a2a2810cb4614c078c74645a3d1 (diff)
downloadgo-git-9b5444420cec4b576aff179f632ec60be64fd7f2.tar.gz
test: move linkx and sinit to run.go
The remaining run-only tests will be migrated to run.go in another CL. This CL will break the build due to issues 8746 and 8806. Update #4139 Update #8746 Update #8806 LGTM=rsc R=rsc, bradfitz, iant CC=golang-codereviews https://golang.org/cl/144630044
Diffstat (limited to 'test/linkx_run.go')
-rw-r--r--test/linkx_run.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/linkx_run.go b/test/linkx_run.go
new file mode 100644
index 0000000000..abfc342a6c
--- /dev/null
+++ b/test/linkx_run.go
@@ -0,0 +1,32 @@
+// run
+
+// Copyright 2014 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Run the linkx test.
+
+package main
+
+import (
+ "fmt"
+ "os"
+ "os/exec"
+)
+
+func main() {
+ cmd := exec.Command("go", "run", "-ldflags=-X main.tbd hello -X main.overwrite trumped", "linkx.go")
+ out, err := cmd.CombinedOutput()
+ if err != nil {
+ fmt.Println(string(out))
+ fmt.Println(err)
+ os.Exit(1)
+ }
+
+ want := "hello\ntrumped\n"
+ got := string(out)
+ if got != want {
+ fmt.Printf("got %q want %q\n", got, want)
+ os.Exit(1)
+ }
+}