Skip to content

Commit

Permalink
Disable FileUtilTest.ReadFileToStringWithNamedPipe for being flaky
Browse files Browse the repository at this point in the history
The test is timing out on Android. More details in the bug.

TBR=kylechar@chromium.org

Bug: 902674
Change-Id: I080e46a5b15d1e4742793ce3ca4f992147a8b90a
Reviewed-on: https://chromium-review.googlesource.com/c/1322830
Reviewed-by: Rayan Kanso <rayankans@chromium.org>
Commit-Queue: Rayan Kanso <rayankans@chromium.org>
Cr-Commit-Position: refs/heads/master@{#606012}
  • Loading branch information
rayankans authored and Commit Bot committed Nov 7, 2018
1 parent 3b75274 commit aaa6e63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base/files/file_util_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2913,7 +2913,8 @@ MULTIPROCESS_TEST_MAIN(MoreThanBufferSizeChildMain) {
return 0;
}

TEST_F(FileUtilTest, ReadFileToStringWithNamedPipe) {
// Times out on Android. http://crbug.com/902674.
TEST_F(FileUtilTest, DISABLED_ReadFileToStringWithNamedPipe) {
FilePath pipe_path =
temp_dir_.GetPath().Append(FILE_PATH_LITERAL("test_pipe"));
ASSERT_EQ(0, mkfifo(pipe_path.value().c_str(), 0600));
Expand Down

0 comments on commit aaa6e63

Please sign in to comment.