Support one more flavour of Intel compiler in TestThreadStepOut

- Thanks to Matt Kopec for noticing the failure!

llvm-svn: 187815
This commit is contained in:
Daniel Malea 2013-08-06 20:39:27 +00:00
parent 3449bb4484
commit 433299d015
1 changed files with 1 additions and 1 deletions

View File

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