[Lldb-commits] [lldb] r187815 - Support one more flavour of Intel compiler in TestThreadStepOut

Daniel Malea daniel.malea at intel.com
Tue Aug 6 13:39:27 PDT 2013


Author: dmalea
Date: Tue Aug  6 15:39:27 2013
New Revision: 187815

URL: http://llvm.org/viewvc/llvm-project?rev=187815&view=rev
Log:
Support one more flavour of Intel compiler in TestThreadStepOut

- Thanks to Matt Kopec for noticing the failure!


Modified:
    lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py

Modified: lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py?rev=187815&r1=187814&r2=187815&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py (original)
+++ lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py Tue Aug  6 15:39:27 2013
@@ -56,7 +56,7 @@ class ThreadStepOutTestCase(TestBase):
         TestBase.setUp(self)
         # Find the line number for our breakpoint.
         self.breakpoint = line_number('main.cpp', '// Set breakpoint here')
-        if any([x in self.getCompiler() for x in ["gcc", "icpc", "icl"]]):
+        if any([x in self.getCompiler() for x in ["gcc", "icc", "icpc", "icl"]]):
             self.step_out_destination = line_number('main.cpp', '// Expect to stop here after step-out (icc and gcc)')
         else:
             self.step_out_destination = line_number('main.cpp', '// Expect to stop here after step-out (clang)')





More information about the lldb-commits mailing list