From 6b869f980de6556f4765f44f2a7af7fa65f1e801 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Mon, 28 Aug 2017 23:20:25 +0200 Subject: [PATCH] WIP: tests --- test/uvw/process.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/uvw/process.cpp b/test/uvw/process.cpp index 71b67890..55723f0b 100644 --- a/test/uvw/process.cpp +++ b/test/uvw/process.cpp @@ -8,6 +8,8 @@ TEST(Process, StdIO) { auto pipe = loop->resource(); handle->stdio(*pipe, uvw::Flags::from()); + handle->stdio(uvw::StdIN, uvw::ProcessHandle::StdIO::READABLE_PIPE); + pipe->close(); loop->run(); }