From 433299d0154b62fb153ee2ea33be17caea86c6be Mon Sep 17 00:00:00 2001 From: Daniel Malea Date: Tue, 6 Aug 2013 20:39:27 +0000 Subject: [PATCH] Support one more flavour of Intel compiler in TestThreadStepOut - Thanks to Matt Kopec for noticing the failure! llvm-svn: 187815 --- lldb/test/functionalities/thread/step_out/TestThreadStepOut.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py b/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py index be894fdee37a..ac8d15e17a8d 100644 --- a/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py +++ b/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py @@ -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)')