mirror of
https://github.com/golang/go
synced 2024-11-05 16:06:10 -07:00
53fd522c0d
Follows suit with https://go-review.googlesource.com/#/c/20111. Generated by running $ grep -R 'Go Authors. All' * | cut -d":" -f1 | while read F;do perl -pi -e 's/Go Authors. All/Go Authors. All/g' $F;done The code in cmd/internal/unvendor wasn't changed. Fixes #15213 Change-Id: I4f235cee0a62ec435f9e8540a1ec08ae03b1a75f Reviewed-on: https://go-review.googlesource.com/21819 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
60 lines
1.2 KiB
Go
60 lines
1.2 KiB
Go
// 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.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"regexp"
|
|
"runtime"
|
|
)
|
|
|
|
func main() {
|
|
if runtime.Compiler != "gc" || runtime.GOOS == "nacl" {
|
|
return
|
|
}
|
|
|
|
err := os.Chdir(filepath.Join("fixedbugs", "issue9355.dir"))
|
|
check(err)
|
|
|
|
out := run("go", "tool", "compile", "-S", "a.go")
|
|
os.Remove("a.o")
|
|
|
|
// 6g/8g print the offset as dec, but 5g/9g print the offset as hex.
|
|
patterns := []string{
|
|
`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
|
|
}
|
|
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
|
|
}
|
|
|
|
func check(err error) {
|
|
if err != nil {
|
|
fmt.Println("BUG:", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|