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)')