aboutsummaryrefslogtreecommitdiff
path: root/gl_test.go
blob: 8aba62c48c59b4e1f530c62893f3e4597b2204c1 (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
// Copyright 2012 The go-gl 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 gl

import (
	"testing"
	"unsafe"
)

func TestPtr(t *testing.T) {
	// test nil
	if p, q := unsafe.Pointer(nil), ptr(nil); p != q {
		t.Fatalf("expected %#v, got %#v\n", p, q)
	}

	// test nil interface
	var r interface{}
	if p, q := unsafe.Pointer(nil), ptr(r); p != q {
		t.Fatalf("expected %#v, got %#v\n", p, q)
	}

	// test nil pointer
	var s *int
	if p, q := unsafe.Pointer(nil), ptr(s); p != q {
		t.Fatalf("expected %#v, got %#v\n", p, q)
	}

	// test uinptr
	for _, n := range []uintptr{0, 1, 2, 42} {
		if p, q := unsafe.Pointer(n), ptr(n); p != q {
			t.Fatalf("expected %#v, got %#v\n", p, q)
		}
	}
}