From 755be7f86a723a909135c89007b5817ab35e5d82 Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Thu, 2 Oct 2014 14:44:33 +0000 Subject: [PATCH] Fix up stale comments from last change. llvm-svn: 218873 --- .../Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp b/lldb/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp index 002a3750ff35..3be6805f3bfe 100644 --- a/lldb/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp +++ b/lldb/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp @@ -548,7 +548,7 @@ TEST_F (ThreadStateCoordinatorTest, RequestThreadResumeSignalsErrorOnUnknownThre // Shouldn't be called yet. ASSERT_EQ (0, resume_call_count); - // Process next event. After that, the resume request call should have fired. + // Process next event. This should fail since the coordinator doesn't know about the thread. ASSERT_PROCESS_NEXT_EVENT_FAILS (); ASSERT_EQ (0, resume_call_count); } @@ -598,7 +598,7 @@ TEST_F (ThreadStateCoordinatorTest, RequestThreadResumeSignalsErrorOnAlreadyRunn // Shouldn't be called yet. ASSERT_EQ (0, resume_call_count); - // Process next event. + // Process next event. Should be an error. ASSERT_PROCESS_NEXT_EVENT_FAILS (); // The resume request should not have gone off because we think it is already running.