2022-01-10 09:57:16 -07:00
|
|
|
// runindir
|
2015-07-10 10:32:03 -06:00
|
|
|
|
2022-01-10 09:57:16 -07:00
|
|
|
// Copyright 2022 The Go Authors. All rights reserved.
|
2015-07-10 10:32:03 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-01-10 09:57:16 -07:00
|
|
|
// Issue 11656: runtime: jump to bad PC missing good traceback
|
|
|
|
|
2015-07-10 10:32:03 -06:00
|
|
|
// windows doesn't work, because Windows exception handling
|
|
|
|
// delivers signals based on the current PC, and that current PC
|
|
|
|
// doesn't go into the Go runtime.
|
|
|
|
|
2018-03-04 04:15:37 -07:00
|
|
|
// wasm does not work, because the linear memory is not executable.
|
|
|
|
|
2020-12-15 21:24:33 -07:00
|
|
|
// This test doesn't work on gccgo/GoLLVM, because they will not find
|
|
|
|
// any unwind information for the artificial function, and will not be
|
|
|
|
// able to unwind past that point.
|
2015-09-27 12:39:01 -06:00
|
|
|
|
2022-01-10 09:57:16 -07:00
|
|
|
//go:build !windows && !wasm && !gccgo
|
|
|
|
// +build !windows,!wasm,!gccgo
|
2015-09-27 12:39:01 -06:00
|
|
|
|
2022-01-10 09:57:16 -07:00
|
|
|
package ignored
|