OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 #include "../base/KernelProxy.h" |
| 7 #include "gtest/gtest.h" |
| 8 #include <fcntl.h> |
| 9 #include <sys/types.h> |
| 10 #include <sys/stat.h> |
| 11 #include <unistd.h> |
| 12 |
| 13 TEST(DevTest, Simple) { |
| 14 struct stat buf; |
| 15 EXPECT_EQ(0, stat("/dev/random", &buf)); |
| 16 int h = open("/dev/random", O_RDONLY); |
| 17 EXPECT_GT(h, 0); |
| 18 char buff[5]; |
| 19 EXPECT_EQ(5, read(h, reinterpret_cast<void*>(buff), 5)); |
| 20 int q = open("/dev/null", O_WRONLY); |
| 21 EXPECT_EQ(5, write(q, reinterpret_cast<void*>(buff), 5)); |
| 22 EXPECT_EQ(0, read(q, reinterpret_cast<void*>(buff), 5)); |
| 23 } |
OLD | NEW |