diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-08-07 15:21:08 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-08-07 15:21:08 +0000 |
commit | 65b4b97f1b87c683db549fa1e8e07ae995e5df7a (patch) | |
tree | 79be4a3596ffbc5fa3fef7445fca6dc01775c0fc | |
parent | 0443f1ac726931cc06c88990750e6e3dd6ec6d40 (diff) | |
download | bcm5719-llvm-65b4b97f1b87c683db549fa1e8e07ae995e5df7a.tar.gz bcm5719-llvm-65b4b97f1b87c683db549fa1e8e07ae995e5df7a.zip |
Re-enable check previously disabled due to llvm.org/pr16603
llvm-svn: 187890
-rw-r--r-- | lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py index 5594d1ecb7f..d8d567a1f6d 100644 --- a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py +++ b/lldb/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 |