Commit 316e9227 authored by Tobias Klauser's avatar Tobias Klauser Committed by Tobias Klauser

unix: fix tests on NetBSD 8.0

Use /dev/ptyp* instead of /dev/ttyp* which don't seem to be available on
NetBSD 8.0+ anymore.

Change-Id: Idda6cc91b8cd26f5488852027b8d918f35a5e8fb
Reviewed-on: https://go-review.googlesource.com/80615
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent 1006bb34
...@@ -20,11 +20,11 @@ func TestDevices(t *testing.T) { ...@@ -20,11 +20,11 @@ func TestDevices(t *testing.T) {
minor uint32 minor uint32
}{ }{
// well known major/minor numbers according to /dev/MAKEDEV on // well known major/minor numbers according to /dev/MAKEDEV on
// NetBSD 7.0 // NetBSD 8.0
{"/dev/null", 2, 2}, {"/dev/null", 2, 2},
{"/dev/zero", 2, 12}, {"/dev/zero", 2, 12},
{"/dev/ttyp0", 5, 0}, {"/dev/ptyp0", 6, 0},
{"/dev/ttyp1", 5, 1}, {"/dev/ptyp1", 6, 1},
{"/dev/random", 46, 0}, {"/dev/random", 46, 0},
{"/dev/urandom", 46, 1}, {"/dev/urandom", 46, 1},
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment