go/src/debug/gosym/pclntab_test.go

var pclineTempDir

var pclinetestBinary

func dotest(t *testing.T) {}

func endtest() {}

// skipIfNotELF skips the test if we are not running on an ELF system.
// These tests open and examine the test binary, and use elf.Open to do so.
func skipIfNotELF(t *testing.T) {}

func getTable(t *testing.T) *Table {}

func crack(file string, t *testing.T) (*elf.File, *Table) {}

func parse(file string, f *elf.File, t *testing.T) (*elf.File, *Table) {}

func TestLineFromAline(t *testing.T) {}

func TestLineAline(t *testing.T) {}

func TestPCLine(t *testing.T) {}

func TestSymVersion(t *testing.T) {}

// read115Executable returns a hello world executable compiled by Go 1.15.
//
// The file was compiled in /tmp/hello.go:
//
//	package main
//
//	func main() {
//		println("hello")
//	}
func read115Executable(tb testing.TB) []byte {}

// Test that we can parse a pclntab from 1.15.
func Test115PclnParsing(t *testing.T) {}

var sinkLineTable

var sinkTable

func Benchmark115(b *testing.B) {}