aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Malea <daniel.malea@intel.com>2013-08-07 15:21:08 +0000
committerDaniel Malea <daniel.malea@intel.com>2013-08-07 15:21:08 +0000
commit50851d82b0f0aa415fc0c057b85b2243190366ab (patch)
tree4ecd004454c36c189c0291a361bc51f44370ed48
parenta688acc09a9a3e31a02d34a58f21e034bdebcad4 (diff)
downloadlldb-50851d82b0f0aa415fc0c057b85b2243190366ab.tar.gz
Re-enable check previously disabled due to llvm.org/pr16603
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187890 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/functionalities/thread/concurrent_events/TestConcurrentEvents.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py b/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
index 5594d1ecb..d8d567a1f 100644
--- a/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
+++ b/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
@@ -490,10 +490,9 @@ class ConcurrentEventsTestCase(TestBase):
# There should be a single active thread (the main one) which hit the breakpoint after joining
self.assertEqual(1, self.finish_breakpoint.GetHitCount(), "Expected main thread (finish) breakpoint to be hit once")
- # llvm.org/pr16603 -- LLDB on Linux sometimes reports exited threads as still 'running'
- #num_threads = self.inferior_process.GetNumThreads()
- #self.assertEqual(1, num_threads, "Expecting 1 thread but seeing %d. Details:%s" % (num_threads,
- # "\n\t".join(self.describe_threads())))
+ num_threads = self.inferior_process.GetNumThreads()
+ self.assertEqual(1, num_threads, "Expecting 1 thread but seeing %d. Details:%s" % (num_threads,
+ "\n\t".join(self.describe_threads())))
self.runCmd("continue")
# The inferior process should have exited without crashing