1
0
mirror of https://github.com/golang/go synced 2024-09-28 19:14:29 -06:00
go/test/fixedbugs/issue9355.go
Johan Brandhorst-Satzkorn 319b75ed33 all: add wasip1 support
Fixes #58141

Co-authored-by: Richard Musiol <neelance@gmail.com>
Co-authored-by: Achille Roussel <achille.roussel@gmail.com>
Co-authored-by: Julien Fabre <ju.pryz@gmail.com>
Co-authored-by: Evan Phoenix <evan@phx.io>
Change-Id: I49b66946acc90fdf09ed9223096bfec9a1e5b923
Reviewed-on: https://go-review.googlesource.com/c/go/+/479627
Run-TryBot: Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Bypass: Ian Lance Taylor <iant@golang.org>
2023-04-11 20:56:32 +00:00

64 lines
1.3 KiB
Go

// +build !js,!wasip1,gc
// 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"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"regexp"
)
func main() {
err := os.Chdir(filepath.Join("fixedbugs", "issue9355.dir"))
check(err)
f, err := ioutil.TempFile("", "issue9355-*.o")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
f.Close()
out := run("go", "tool", "compile", "-p=p", "-o", f.Name(), "-S", "a.go")
os.Remove(f.Name())
// 6g/8g print the offset as dec, but 5g/9g print the offset as hex.
patterns := []string{
`rel 0\+\d t=1 p\.x\+8\r?\n`, // y = &x.b
`rel 0\+\d t=1 p\.x\+(28|1c)\r?\n`, // z = &x.d.q
`rel 0\+\d t=1 p\.b\+5\r?\n`, // c = &b[5]
`rel 0\+\d t=1 p\.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)
}
}