thread state coordinator: add additional assert missing from previous test check-in.

llvm-svn: 218686
This commit is contained in:
Todd Fiala 2014-09-30 17:00:52 +00:00
parent 25cbf5aac6
commit 1f67ded0b2
1 changed files with 1 additions and 0 deletions

View File

@ -551,6 +551,7 @@ TEST(ThreadStateCoordinatorTest, ResumedThreadAlreadyMarkedDoesNotHoldUpPendingS
// 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);