diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-03 19:01:29 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-03 19:01:29 +0000 |
commit | e7d404600b64f80d38a0bfaf1cae4f9c8c928f6c (patch) | |
tree | 47489b32c06f11b88a3687d5e8ca2ed384e61363 /base | |
parent | 2b859529c112c8f5dd3a3a855c477521f957c8f5 (diff) | |
download | chromium_src-e7d404600b64f80d38a0bfaf1cae4f9c8c928f6c.zip chromium_src-e7d404600b64f80d38a0bfaf1cae4f9c8c928f6c.tar.gz chromium_src-e7d404600b64f80d38a0bfaf1cae4f9c8c928f6c.tar.bz2 |
Weee. More TODO(darin)s. :)
Disabled two flaky unittests.
Review URL: http://codereview.chromium.org/9258
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4468 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/idletimer_unittest.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/base/idletimer_unittest.cc b/base/idletimer_unittest.cc index 3beaa09..ea43262 100644 --- a/base/idletimer_unittest.cc +++ b/base/idletimer_unittest.cc @@ -115,7 +115,8 @@ TEST_F(IdleTimerTest, NoRepeatFlipIdleOnce) { EXPECT_EQ(test_task.get_idle_counter(), 2); } -TEST_F(IdleTimerTest, NoRepeatNotIdle) { +// TODO(darin): http://crbug.com/3704 +TEST_F(IdleTimerTest, DISABLED_NoRepeatNotIdle) { // Create an IdleTimer, which should fire once after 100ms. // Create a Quit timer which will fire after 1s. // Create a timer to reset idle every 50ms. @@ -173,7 +174,7 @@ TEST_F(IdleTimerTest, Repeat) { EXPECT_LE(test_task.get_idle_counter(), 10); } -// TODO(darin): http://code.google.com/p/chromium/issues/detail?id=3780 +// TODO(darin): http://crbug.com/3780 TEST_F(IdleTimerTest, DISABLED_RepeatIdleReset) { // Create an IdleTimer, which should fire repeatedly after 100ms. // Create a Quit timer which will fire after 1s. @@ -203,7 +204,8 @@ TEST_F(IdleTimerTest, DISABLED_RepeatIdleReset) { EXPECT_LE(test_task.get_idle_counter(), 9); } -TEST_F(IdleTimerTest, RepeatNotIdle) { +// TODO(darin): http://crbug.com/3704 +TEST_F(IdleTimerTest, DISABLED_RepeatNotIdle) { // Create an IdleTimer, which should fire repeatedly after 100ms. // Create a Quit timer which will fire after 1s. // Create a timer to reset idle every 50ms. |