aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--brillo/process_unittest.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/brillo/process_unittest.cc b/brillo/process_unittest.cc
index 58e2f56..d2c92e6 100644
--- a/brillo/process_unittest.cc
+++ b/brillo/process_unittest.cc
@@ -79,7 +79,13 @@ TEST(SimpleProcess, BindFd) {
EXPECT_EQ(std::string(kMsg) + "\n", std::string(buf));
}
-TEST(SimpleProcess, BindFdToSameFd) {
+// The test framework uses the device's dash shell as "sh", which doesn't
+// support redirecting stdout to arbitrary large file descriptor numbers
+// directly, nor has /proc mounted to open /proc/self/fd/NN. This test would
+// fail if pipe.writer is big enough.
+// TODO(deymo): Write a helper program that writes "hello_world" to the passed
+// file descriptor and re-enabled this test.
+TEST(DISABLED_SimpleProcess, BindFdToSameFd) {
static const char* kMsg = "hello_world";
ScopedPipe pipe;
ProcessImpl process;