We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c74be77 commit 7f3eb61Copy full SHA for 7f3eb61
src/runtime/crash_cgo_test.go
@@ -625,12 +625,20 @@ func TestSegv(t *testing.T) {
625
// TODO(golang.org/issue/49182): Skip, runtime
626
// throws while attempting to generate
627
// traceback.
628
- default:
629
- nowant := "runtime: "
630
- if strings.Contains(got, nowant) {
631
- t.Errorf("unexpectedly saw %q in output", nowant)
+ return
+ case "linux":
+ if runtime.GOARCH == "386" {
+ // TODO(golang.org/issue/50504): Skip,
632
+ // runtime throws while attempting to
633
+ // generate traceback from VDSO call
634
+ // via asmcgocall.
635
636
}
637
638
+ nowant := "runtime: "
639
+ if strings.Contains(got, nowant) {
640
+ t.Errorf("unexpectedly saw %q in output", nowant)
641
+ }
642
})
643
644
0 commit comments