Brad Fitzpatrick | 5194744 | 2016-03-01 22:57:46 +0000 | [diff] [blame] | 1 | // Copyright 2016 The Go Authors. All rights reserved. |
Ian Lance Taylor | cc0a04d | 2016-02-10 21:46:51 -0800 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | // +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris |
| 6 | |
| 7 | package runtime_test |
| 8 | |
| 9 | import ( |
| 10 | "runtime" |
Ian Lance Taylor | cc0a04d | 2016-02-10 21:46:51 -0800 | [diff] [blame] | 11 | "testing" |
Austin Clements | 276a52d | 2016-07-18 21:40:02 -0400 | [diff] [blame] | 12 | "unsafe" |
Ian Lance Taylor | cc0a04d | 2016-02-10 21:46:51 -0800 | [diff] [blame] | 13 | ) |
| 14 | |
| 15 | // Test that the error value returned by mmap is positive, as that is |
| 16 | // what the code in mem_bsd.go, mem_darwin.go, and mem_linux.go expects. |
| 17 | // See the uses of ENOMEM in sysMap in those files. |
| 18 | func TestMmapErrorSign(t *testing.T) { |
Austin Clements | 193088b | 2017-10-16 20:28:29 -0400 | [diff] [blame] | 19 | p, err := runtime.Mmap(nil, ^uintptr(0)&^(runtime.GetPhysPageSize()-1), 0, runtime.MAP_ANON|runtime.MAP_PRIVATE, -1, 0) |
Ian Lance Taylor | cc0a04d | 2016-02-10 21:46:51 -0800 | [diff] [blame] | 20 | |
Austin Clements | 193088b | 2017-10-16 20:28:29 -0400 | [diff] [blame] | 21 | if p != nil || err != runtime.ENOMEM { |
| 22 | t.Errorf("mmap = %v, %v, want nil, %v", p, err, runtime.ENOMEM) |
Ian Lance Taylor | cc0a04d | 2016-02-10 21:46:51 -0800 | [diff] [blame] | 23 | } |
| 24 | } |
Austin Clements | 276a52d | 2016-07-18 21:40:02 -0400 | [diff] [blame] | 25 | |
| 26 | func TestPhysPageSize(t *testing.T) { |
| 27 | // Mmap fails if the address is not page aligned, so we can |
| 28 | // use this to test if the page size is the true page size. |
| 29 | ps := runtime.GetPhysPageSize() |
| 30 | |
| 31 | // Get a region of memory to play with. This should be page-aligned. |
Austin Clements | 193088b | 2017-10-16 20:28:29 -0400 | [diff] [blame] | 32 | b, err := runtime.Mmap(nil, 2*ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE, -1, 0) |
| 33 | if err != 0 { |
| 34 | t.Fatalf("Mmap: %v", err) |
Austin Clements | 276a52d | 2016-07-18 21:40:02 -0400 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | // Mmap should fail at a half page into the buffer. |
Austin Clements | 193088b | 2017-10-16 20:28:29 -0400 | [diff] [blame] | 38 | _, err = runtime.Mmap(unsafe.Pointer(uintptr(b)+ps/2), ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE|runtime.MAP_FIXED, -1, 0) |
| 39 | if err == 0 { |
Austin Clements | 276a52d | 2016-07-18 21:40:02 -0400 | [diff] [blame] | 40 | t.Errorf("Mmap should have failed with half-page alignment %d, but succeeded: %v", ps/2, err) |
| 41 | } |
| 42 | |
| 43 | // Mmap should succeed at a full page into the buffer. |
Austin Clements | 193088b | 2017-10-16 20:28:29 -0400 | [diff] [blame] | 44 | _, err = runtime.Mmap(unsafe.Pointer(uintptr(b)+ps), ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE|runtime.MAP_FIXED, -1, 0) |
| 45 | if err != 0 { |
Austin Clements | 276a52d | 2016-07-18 21:40:02 -0400 | [diff] [blame] | 46 | t.Errorf("Mmap at full-page alignment %d failed: %v", ps, err) |
| 47 | } |
| 48 | } |