| Index: base/threading/thread_unittest.cc
|
| diff --git a/base/threading/thread_unittest.cc b/base/threading/thread_unittest.cc
|
| index dfa04c6ac48fce2e445daccb4e14911bda951757..7756360a6d42097e41e9f87ccf79c79063a7151a 100644
|
| --- a/base/threading/thread_unittest.cc
|
| +++ b/base/threading/thread_unittest.cc
|
| @@ -120,28 +120,6 @@ void ReturnThreadId(base::Thread* thread,
|
|
|
| } // namespace
|
|
|
| -TEST_F(ThreadTest, Restart) {
|
| - Thread a("Restart");
|
| - a.Stop();
|
| - EXPECT_FALSE(a.message_loop());
|
| - EXPECT_FALSE(a.IsRunning());
|
| - EXPECT_TRUE(a.Start());
|
| - EXPECT_TRUE(a.message_loop());
|
| - EXPECT_TRUE(a.IsRunning());
|
| - a.Stop();
|
| - EXPECT_FALSE(a.message_loop());
|
| - EXPECT_FALSE(a.IsRunning());
|
| - EXPECT_TRUE(a.Start());
|
| - EXPECT_TRUE(a.message_loop());
|
| - EXPECT_TRUE(a.IsRunning());
|
| - a.Stop();
|
| - EXPECT_FALSE(a.message_loop());
|
| - EXPECT_FALSE(a.IsRunning());
|
| - a.Stop();
|
| - EXPECT_FALSE(a.message_loop());
|
| - EXPECT_FALSE(a.IsRunning());
|
| -}
|
| -
|
| TEST_F(ThreadTest, StartWithOptions_StackSize) {
|
| Thread a("StartWithStackSize");
|
| // Ensure that the thread can work with only 12 kb and still process a
|
|
|