OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/logging.h" | 5 #include "base/logging.h" |
6 #include "base/message_loop.h" | 6 #include "base/message_loop.h" |
7 #include "base/platform_thread.h" | 7 #include "base/platform_thread.h" |
8 #include "base/ref_counted.h" | 8 #include "base/ref_counted.h" |
9 #include "base/thread.h" | 9 #include "base/thread.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 1471 matching lines...) Loading... |
1482 virtual void OnFileCanWriteWithoutBlocking(int fd) { | 1482 virtual void OnFileCanWriteWithoutBlocking(int fd) { |
1483 MessageLoop::current()->Quit(); | 1483 MessageLoop::current()->Quit(); |
1484 } | 1484 } |
1485 virtual void OnFileCanReadWithoutBlocking(int fd) { | 1485 virtual void OnFileCanReadWithoutBlocking(int fd) { |
1486 MessageLoop::current()->Quit(); | 1486 MessageLoop::current()->Quit(); |
1487 } | 1487 } |
1488 }; | 1488 }; |
1489 | 1489 |
1490 } // namespace | 1490 } // namespace |
1491 | 1491 |
1492 TEST(MessageLoopTest, DISABLED_FileDescriptorWatcherOutlivesMessageLoop) { | 1492 TEST(MessageLoopTest, FileDescriptorWatcherOutlivesMessageLoop) { |
1493 // Simulate a MessageLoop that dies before an FileDescriptorWatcher. | 1493 // Simulate a MessageLoop that dies before an FileDescriptorWatcher. |
1494 // This could happen when people use the Singleton pattern or atexit. | 1494 // This could happen when people use the Singleton pattern or atexit. |
1495 // This is disabled for now because it fails (valgrind shows | 1495 // This is disabled for now because it fails (valgrind shows |
1496 // invalid reads), and it's not clear any code relies on this... | 1496 // invalid reads), and it's not clear any code relies on this... |
1497 // TODO(dkegel): enable if it turns out we rely on this | |
1498 | 1497 |
1499 // Create a file descriptor. Doesn't need to be readable or writable, | 1498 // Create a file descriptor. Doesn't need to be readable or writable, |
1500 // as we don't need to actually get any notifications. | 1499 // as we don't need to actually get any notifications. |
1501 // pipe() is just the easiest way to do it. | 1500 // pipe() is just the easiest way to do it. |
1502 int pipefds[2]; | 1501 int pipefds[2]; |
1503 int err = pipe(pipefds); | 1502 int err = pipe(pipefds); |
1504 ASSERT_TRUE(err == 0); | 1503 ASSERT_TRUE(err == 0); |
1505 int fd = pipefds[1]; | 1504 int fd = pipefds[1]; |
1506 { | 1505 { |
1507 // Arrange for controller to live longer than message loop. | 1506 // Arrange for controller to live longer than message loop. |
(...skipping 28 matching lines...) Loading... |
1536 message_loop.WatchFileDescriptor(fd, | 1535 message_loop.WatchFileDescriptor(fd, |
1537 true, MessageLoopForIO::WATCH_WRITE, &controller, &delegate); | 1536 true, MessageLoopForIO::WATCH_WRITE, &controller, &delegate); |
1538 controller.StopWatchingFileDescriptor(); | 1537 controller.StopWatchingFileDescriptor(); |
1539 } | 1538 } |
1540 } | 1539 } |
1541 close(pipefds[0]); | 1540 close(pipefds[0]); |
1542 close(pipefds[1]); | 1541 close(pipefds[1]); |
1543 } | 1542 } |
1544 | 1543 |
1545 #endif // defined(OS_POSIX) | 1544 #endif // defined(OS_POSIX) |
OLD | NEW |