Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: base/message_loop/message_pump_io_ios_unittest.cc

Issue 55983002: Make gtest always use simple internal regex engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/message_loop/message_pump_libevent_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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/message_loop/message_pump_io_ios.h" 5 #include "base/message_loop/message_pump_io_ios.h"
6 6
7 #include <unistd.h> 7 #include <unistd.h>
8 8
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "base/posix/eintr_wrapper.h" 10 #include "base/posix/eintr_wrapper.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 // Test to make sure that we catch calling WatchFileDescriptor off of the 76 // Test to make sure that we catch calling WatchFileDescriptor off of the
77 // wrong thread. 77 // wrong thread.
78 TEST_F(MessagePumpIOSForIOTest, TestWatchingFromBadThread) { 78 TEST_F(MessagePumpIOSForIOTest, TestWatchingFromBadThread) {
79 MessagePumpIOSForIO::FileDescriptorWatcher watcher; 79 MessagePumpIOSForIO::FileDescriptorWatcher watcher;
80 StupidWatcher delegate; 80 StupidWatcher delegate;
81 81
82 ASSERT_DEBUG_DEATH(io_loop()->WatchFileDescriptor( 82 ASSERT_DEBUG_DEATH(io_loop()->WatchFileDescriptor(
83 STDOUT_FILENO, false, MessageLoopForIO::WATCH_READ, &watcher, &delegate), 83 STDOUT_FILENO, false, MessageLoopForIO::WATCH_READ, &watcher, &delegate),
84 "Check failed: " 84 "Check failed: "
85 "watch_file_descriptor_caller_checker_.CalledOnValidThread()"); 85 "watch_file_descriptor_caller_checker_.CalledOnValidThread\\(\\)");
86 } 86 }
87 87
88 #endif // GTEST_HAS_DEATH_TEST && !defined(NDEBUG) 88 #endif // GTEST_HAS_DEATH_TEST && !defined(NDEBUG)
89 89
90 class BaseWatcher : public MessagePumpIOSForIO::Watcher { 90 class BaseWatcher : public MessagePumpIOSForIO::Watcher {
91 public: 91 public:
92 BaseWatcher(MessagePumpIOSForIO::FileDescriptorWatcher* controller) 92 BaseWatcher(MessagePumpIOSForIO::FileDescriptorWatcher* controller)
93 : controller_(controller) { 93 : controller_(controller) {
94 DCHECK(controller_); 94 DCHECK(controller_);
95 } 95 }
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 pump->WatchFileDescriptor(pipefds_[1], 179 pump->WatchFileDescriptor(pipefds_[1],
180 false, MessagePumpIOSForIO::WATCH_READ_WRITE, &watcher, &delegate); 180 false, MessagePumpIOSForIO::WATCH_READ_WRITE, &watcher, &delegate);
181 181
182 // Spoof a callback. 182 // Spoof a callback.
183 HandleFdIOEvent(&watcher); 183 HandleFdIOEvent(&watcher);
184 } 184 }
185 185
186 } // namespace 186 } // namespace
187 187
188 } // namespace base 188 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | base/message_loop/message_pump_libevent_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698