[Lldb-commits] [lldb] r248513 - Don't enter interactive loop when finished running the test suite.
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 24 09:37:41 PDT 2015
Author: gclayton
Date: Thu Sep 24 11:37:41 2015
New Revision: 248513
URL: http://llvm.org/viewvc/llvm-project?rev=248513&view=rev
Log:
Don't enter interactive loop when finished running the test suite.
Modified:
lldb/trunk/test/curses_results.py
Modified: lldb/trunk/test/curses_results.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/curses_results.py?rev=248513&r1=248512&r2=248513&view=diff
==============================================================================
--- lldb/trunk/test/curses_results.py (original)
+++ lldb/trunk/test/curses_results.py Thu Sep 24 11:37:41 2015
@@ -207,7 +207,7 @@ class Curses(test_results.ResultsFormatt
self.status_panel.add_status_item(name="unexpected_success", title="Unexpected Success", format="%u", width=30, value=0, update=False)
self.main_window.refresh()
elif event == 'terminate':
- self.main_window.key_event_loop()
+ #self.main_window.key_event_loop()
lldbcurses.terminate_curses()
check_for_one_key = False
self.using_terminal = False
More information about the lldb-commits
mailing list