aboutsummaryrefslogtreecommitdiff
path: root/test/arenas/smoke.go
blob: 56dad53fd088e89d404543bab6860e050be77298 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// build -goexperiment arenas

// Copyright 2023 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 (
	"arena"
	"log"
	"reflect"
)

func main() {
	a := arena.NewArena()
	defer a.Free()

	const iValue = 10

	i := arena.New[int](a)
	*i = iValue

	if *i != iValue {
		// This test doesn't reasonably expect this to fail. It's more likely
		// that *i crashes for some reason. Still, why not check it.
		log.Fatalf("bad i value: got %d, want %d", *i, iValue)
	}

	const wantLen = 125
	const wantCap = 1912

	sl := arena.MakeSlice[*int](a, wantLen, wantCap)
	if len(sl) != wantLen {
		log.Fatalf("bad arena slice length: got %d, want %d", len(sl), wantLen)
	}
	if cap(sl) != wantCap {
		log.Fatalf("bad arena slice capacity: got %d, want %d", cap(sl), wantCap)
	}
	sl = sl[:cap(sl)]
	for j := range sl {
		sl[j] = i
	}
	for j := range sl {
		if *sl[j] != iValue {
			// This test doesn't reasonably expect this to fail. It's more likely
			// that sl[j] crashes for some reason. Still, why not check it.
			log.Fatalf("bad sl[j] value: got %d, want %d", *sl[j], iValue)
		}
	}

	t := reflect.TypeOf(int(0))
	v := reflect.ArenaNew(a, t)
	if want := reflect.PointerTo(t); v.Type() != want {
		log.Fatalf("unexpected type for arena-allocated value: got %s, want %s", v.Type(), want)
	}
	i2 := v.Interface().(*int)
	*i2 = iValue

	if *i2 != iValue {
		// This test doesn't reasonably expect this to fail. It's more likely
		// that *i crashes for some reason. Still, why not check it.
		log.Fatalf("bad i2 value: got %d, want %d", *i2, iValue)
	}
}