You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2013/07/23 21:36:15 UTC

git commit: Fixed IO.BufferedRead test to cleanup the file created by the test.

Updated Branches:
  refs/heads/master 8b70fbadb -> c59e1147a


Fixed IO.BufferedRead test to cleanup the file created by the test.

Review: https://reviews.apache.org/r/12876


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c59e1147
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/c59e1147
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/c59e1147

Branch: refs/heads/master
Commit: c59e1147aa02245e8673438866402c7a5459ecf2
Parents: 8b70fba
Author: Vinod Kone <vi...@twitter.com>
Authored: Tue Jul 23 12:13:36 2013 -0700
Committer: Vinod Kone <vi...@twitter.com>
Committed: Tue Jul 23 12:15:19 2013 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/src/tests/io_tests.cpp | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/c59e1147/3rdparty/libprocess/src/tests/io_tests.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/tests/io_tests.cpp b/3rdparty/libprocess/src/tests/io_tests.cpp
index 288fa83..c20d992 100644
--- a/3rdparty/libprocess/src/tests/io_tests.cpp
+++ b/3rdparty/libprocess/src/tests/io_tests.cpp
@@ -159,4 +159,6 @@ TEST(IO, BufferedRead)
   AWAIT_EXPECT_EQ(data, future);
 
   close(pipes[0]);
+
+  ASSERT_SOME(os::rm("file"));
 }