Disable SimpleProcess.BindFdToSameFd test.

This test is flaky in the Chromium OS builders since it fails when a
file descriptor number is big enough.

BUG=None
TEST=FEATURES=test emerge-link libbrillo

Change-Id: I4b2ff807e72a43f7627b1f105ad4b051372054f9
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 @@
   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;