diff options
Diffstat (limited to 'lldb/gtest')
-rw-r--r-- | lldb/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp | 4 |
1 files 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 002a3750ff3..3be6805f3bf 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. |