2014-12-16 22:15:49 +00:00
|
|
|
// run
|
|
|
|
|
2016-04-10 21:32:26 +00:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
2014-12-16 22:15:49 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2018-03-04 11:15:37 +00:00
|
|
|
if runtime.Compiler != "gc" || runtime.GOOS == "nacl" || runtime.GOOS == "js" {
|
2014-12-16 22:15:49 +00:00
|
|
|
return
|
|
|
|
}
|
2015-02-03 20:41:52 +00:00
|
|
|
|
2015-05-21 17:28:17 +00:00
|
|
|
err := os.Chdir(filepath.Join("fixedbugs", "issue9355.dir"))
|
2015-02-03 20:41:52 +00:00
|
|
|
check(err)
|
|
|
|
|
2015-05-21 17:28:13 +00:00
|
|
|
out := run("go", "tool", "compile", "-S", "a.go")
|
2015-05-21 17:28:17 +00:00
|
|
|
os.Remove("a.o")
|
2015-02-03 20:41:52 +00:00
|
|
|
|
2014-12-19 05:36:26 +00:00
|
|
|
// 6g/8g print the offset as dec, but 5g/9g print the offset as hex.
|
2014-12-16 22:15:49 +00:00
|
|
|
patterns := []string{
|
2014-12-19 05:36:26 +00:00
|
|
|
`rel 0\+\d t=1 \"\"\.x\+8\r?\n`, // y = &x.b
|
|
|
|
`rel 0\+\d t=1 \"\"\.x\+(28|1c)\r?\n`, // z = &x.d.q
|
|
|
|
`rel 0\+\d t=1 \"\"\.b\+5\r?\n`, // c = &b[5]
|
|
|
|
`rel 0\+\d t=1 \"\"\.x\+(88|58)\r?\n`, // w = &x.f[3].r
|
2014-12-16 22:15:49 +00:00
|
|
|
}
|
|
|
|
for _, p := range patterns {
|
|
|
|
if ok, err := regexp.Match(p, out); !ok || err != nil {
|
|
|
|
println(string(out))
|
|
|
|
panic("can't find pattern " + p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func run(cmd string, args ...string) []byte {
|
|
|
|
out, err := exec.Command(cmd, args...).CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(string(out))
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
2015-02-03 20:41:52 +00:00
|
|
|
|
|
|
|
func check(err error) {
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("BUG:", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|