aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue24491.go
blob: 4703368793779e57d8dad1253e1a17d480763291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// run

// Copyright 2020 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.

// This test makes sure unsafe-uintptr arguments are handled correctly.

package main

import (
	"runtime"
	"unsafe"
)

var done = make(chan bool, 1)

func setup() unsafe.Pointer {
	s := "ok"
	runtime.SetFinalizer(&s, func(p *string) { *p = "FAIL" })
	return unsafe.Pointer(&s)
}

//go:noinline
//go:uintptrescapes
func test(s string, p uintptr) {
	runtime.GC()
	if *(*string)(unsafe.Pointer(p)) != "ok" {
		panic(s + " return unexpected result")
	}
	done <- true
}

func main() {
	test("normal", uintptr(setup()))
	<-done

	go test("go", uintptr(setup()))
	<-done

	func() {
		defer test("defer", uintptr(setup()))
	}()
	<-done
}