diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-03 23:14:56 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-03 23:14:56 +0000 |
commit | ed931012a503d702e5377a5327688276850e4cdd (patch) | |
tree | 8b443cfd85af49dffb10a98e9260f927b73765cb | |
parent | 3ec1a3af311b95b325a3302679be1eb68e89e58e (diff) | |
download | chromium_src-ed931012a503d702e5377a5327688276850e4cdd.zip chromium_src-ed931012a503d702e5377a5327688276850e4cdd.tar.gz chromium_src-ed931012a503d702e5377a5327688276850e4cdd.tar.bz2 |
Undisable the now not-flaky unittests!
Review URL: http://codereview.chromium.org/9264
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4513 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | base/idletimer_unittest.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/base/idletimer_unittest.cc b/base/idletimer_unittest.cc index 2acfce3..06166fb 100644 --- a/base/idletimer_unittest.cc +++ b/base/idletimer_unittest.cc @@ -123,8 +123,7 @@ TEST_F(IdleTimerTest, NoRepeatFlipIdleOnce) { EXPECT_EQ(test_task.get_idle_counter(), 2); } -// TODO(darin): http://crbug.com/3704 -TEST_F(IdleTimerTest, DISABLED_NoRepeatNotIdle) { +TEST_F(IdleTimerTest, NoRepeatNotIdle) { // Create an IdleTimer, which should fire once after 500ms. // Create a Quit timer which will fire after 5s. // Create a timer to reset idle every 50ms. @@ -181,7 +180,6 @@ TEST_F(IdleTimerTest, Repeat) { EXPECT_LE(test_task.get_idle_counter(), 3); } -// TODO(darin): http://crbug.com/3780 TEST_F(IdleTimerTest, RepeatIdleReset) { // Create an IdleTimer, which should fire repeatedly after 500ms. // Create a Quit timer which will fire after 5s. @@ -211,8 +209,7 @@ TEST_F(IdleTimerTest, RepeatIdleReset) { EXPECT_LE(test_task.get_idle_counter(), 10); } -// TODO(darin): http://crbug.com/3704 -TEST_F(IdleTimerTest, DISABLED_RepeatNotIdle) { +TEST_F(IdleTimerTest, RepeatNotIdle) { // Create an IdleTimer, which should fire repeatedly after 500ms. // Create a Quit timer which will fire after 4s. // Create a timer to reset idle every 50ms. |