aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Malea <daniel.malea@intel.com>2013-08-06 20:39:27 +0000
committerDaniel Malea <daniel.malea@intel.com>2013-08-06 20:39:27 +0000
commit31cdd3d8545077cd5cdb6873bf005508a1570d38 (patch)
tree1cf4a4bfbda6aebbdcaa5b83296cb2725413b515
parent65a020792483fc918b0c4bcb21db24de9ef430aa (diff)
downloadlldb-31cdd3d8545077cd5cdb6873bf005508a1570d38.tar.gz
Support one more flavour of Intel compiler in TestThreadStepOut
- Thanks to Matt Kopec for noticing the failure! git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187815 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/functionalities/thread/step_out/TestThreadStepOut.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functionalities/thread/step_out/TestThreadStepOut.py b/test/functionalities/thread/step_out/TestThreadStepOut.py
index be894fdee..ac8d15e17 100644
--- a/test/functionalities/thread/step_out/TestThreadStepOut.py
+++ b/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)')