diff options
| author | Chaoren Lin <chaorenl@google.com> | 2015-02-03 01:51:15 +0000 |
|---|---|---|
| committer | Chaoren Lin <chaorenl@google.com> | 2015-02-03 01:51:15 +0000 |
| commit | 86fd8e45f43df7c2276055a23d3da4d9b7d24b21 (patch) | |
| tree | e0fbf8ecdd54414a3c9c044c85a36cb8203da40b /lldb/test/functionalities/thread | |
| parent | 97ccc294da48e956f52e0f0dd224f2282fce8d81 (diff) | |
| download | bcm5719-llvm-86fd8e45f43df7c2276055a23d3da4d9b7d24b21.tar.gz bcm5719-llvm-86fd8e45f43df7c2276055a23d3da4d9b7d24b21.zip | |
Modify ThreadStateCoodrinator in order to resume threads if stop wasn't requested.
llvm-svn: 227924
Diffstat (limited to 'lldb/test/functionalities/thread')
| -rw-r--r-- | lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py index 05bd57b783b..5fae24048cb 100644 --- a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py +++ b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py @@ -372,7 +372,7 @@ class ConcurrentEventsTestCase(TestBase): """ return self.finish_breakpoint.GetHitCount() > 0 or \ self.crash_count > 0 or \ - self.inferior_process.GetState == lldb.eStateExited + self.inferior_process.GetState() == lldb.eStateExited def do_thread_actions(self, num_breakpoint_threads = 0, |

