[Lldb-commits] [lldb] r248301 - Update TestChangeProcessGroup to remove obsolete workaround.

Chaoren Lin via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 22 10:37:34 PDT 2015


Author: chaoren
Date: Tue Sep 22 12:37:34 2015
New Revision: 248301

URL: http://llvm.org/viewvc/llvm-project?rev=248301&view=rev
Log:
Update TestChangeProcessGroup to remove obsolete workaround.

Expression evaluation in syscalls should work now.

Reviewers: labath

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D12976

Modified:
    lldb/trunk/test/functionalities/process_group/TestChangeProcessGroup.py

Modified: lldb/trunk/test/functionalities/process_group/TestChangeProcessGroup.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/process_group/TestChangeProcessGroup.py?rev=248301&r1=248300&r2=248301&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/process_group/TestChangeProcessGroup.py (original)
+++ lldb/trunk/test/functionalities/process_group/TestChangeProcessGroup.py Tue Sep 22 12:37:34 2015
@@ -89,9 +89,6 @@ class ChangeProcessGroupTestCase(TestBas
         lldbutil.run_break_set_by_file_and_line(self, 'main.c', self.line, num_expected_locations=-1)
 
         thread = process.GetSelectedThread()
-        # this gives a chance for the thread to exit the sleep syscall and sidesteps
-        # <https://llvm.org/bugs/show_bug.cgi?id=23659> on linux
-        thread.StepInstruction(False)
 
         # release the child from its loop
         self.expect("expr release_child_flag = 1", substrs = ["= 1"])




More information about the lldb-commits mailing list