diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2014-10-02 14:44:33 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2014-10-02 14:44:33 +0000 |
commit | 755be7f86a723a909135c89007b5817ab35e5d82 (patch) | |
tree | 21f51913ced694fab7306964dddb4908bdf5ca85 /lldb/gtest | |
parent | 404e370892a8548cf6656b0913b51701001123fa (diff) | |
download | bcm5719-llvm-755be7f86a723a909135c89007b5817ab35e5d82.tar.gz bcm5719-llvm-755be7f86a723a909135c89007b5817ab35e5d82.zip |
Fix up stale comments from last change.
llvm-svn: 218873
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. |