[Lldb-commits] [lldb] r218686 - thread state coordinator: add additional assert missing from previous test check-in.

Todd Fiala todd.fiala at gmail.com
Tue Sep 30 10:00:53 PDT 2014


Author: tfiala
Date: Tue Sep 30 12:00:52 2014
New Revision: 218686

URL: http://llvm.org/viewvc/llvm-project?rev=218686&view=rev
Log:
thread state coordinator: add additional assert missing from previous test check-in.

Modified:
    lldb/trunk/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp

Modified: lldb/trunk/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp?rev=218686&r1=218685&r2=218686&view=diff
==============================================================================
--- lldb/trunk/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp (original)
+++ lldb/trunk/gtest/unittest/Plugins/Process/Linux/ThreadStateCoordinatorTest.cpp Tue Sep 30 12:00:52 2014
@@ -551,6 +551,7 @@ TEST(ThreadStateCoordinatorTest, Resumed
     // Both TID A and TID B should have had stop requests made.
     ASSERT_EQ (2, request_thread_stop_calls);
     ASSERT_EQ (1, request_thread_stop_tids.count (PENDING_TID_A));
+    ASSERT_EQ (1, request_thread_stop_tids.count (PENDING_TID_B));
 
     // But we still shouldn't have the deferred signal call go off yet.
     ASSERT_EQ (false, call_after_fired);





More information about the lldb-commits mailing list