2014-11-09 19:10:49 -07:00
|
|
|
// +build !nacl
|
2014-11-06 13:14:08 -07:00
|
|
|
// 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() {
|
2014-12-31 14:25:52 -07:00
|
|
|
// Successful run
|
2014-12-18 10:33:44 -07:00
|
|
|
cmd := exec.Command("go", "run", "-ldflags=-X main.tbd hello -X main.overwrite trumped -X main.nosuchsymbol neverseen", "linkx.go")
|
2014-11-06 13:14:08 -07:00
|
|
|
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)
|
|
|
|
}
|
2014-12-31 14:25:52 -07:00
|
|
|
|
|
|
|
// Issue 8810
|
|
|
|
cmd = exec.Command("go", "run", "-ldflags=-X main.tbd", "linkx.go")
|
|
|
|
_, err = cmd.CombinedOutput()
|
|
|
|
if err == nil {
|
|
|
|
fmt.Println("-X linker flag should not accept keys without values")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2014-11-06 13:14:08 -07:00
|
|
|
}
|