| Index: native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc | 
| diff --git a/native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc b/native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc | 
| index 4472d8c592a3c47962fe630b7557c7e84afbecf3..29e17f25470e490fc2b0050f3a494287aadbfb36 100644 | 
| --- a/native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc | 
| +++ b/native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc | 
| @@ -252,6 +252,13 @@ TEST_F(KernelWrapTest, open) { | 
| open("open", 3456); | 
| } | 
|  | 
| +TEST_F(KernelWrapTest, pipe) { | 
| +  int fds[2] = { 1, 2 }; | 
| + | 
| +  EXPECT_CALL(mock, pipe(fds)).Times(1); | 
| +  pipe(fds); | 
| +} | 
| + | 
| TEST_F(KernelWrapTest, read) { | 
| EXPECT_CALL(mock, read(4567, NULL, 5678)).Times(1); | 
| read(4567, NULL, 5678); | 
|  |