aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kopec <Matt.Kopec@intel.com>2013-07-31 16:27:27 +0000
committerMatt Kopec <Matt.Kopec@intel.com>2013-07-31 16:27:27 +0000
commit03e33528b9d0218542fc3ec994fdc22808c3809f (patch)
tree0662f30b7f3926f649998581fb314d480fde1271
parentc3e49ca112343c6286c48a18bef3ce52bb69b3be (diff)
downloadlldb-03e33528b9d0218542fc3ec994fdc22808c3809f.tar.gz
Update break conditions test to have consistent behaviour on all test suite compilers.
Also update comment in const variables test to reflect ICC status. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187501 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py2
-rw-r--r--test/lang/c/const_variables/TestConstVariables.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py b/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
index 112a58861..25a9ed15a 100644
--- a/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
+++ b/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
@@ -121,7 +121,7 @@ class BreakpointConditionsTestCase(TestBase):
self.runCmd("breakpoint disable")
self.runCmd("breakpoint set -p Loop")
- self.runCmd("breakpoint modify -c ($eax&&!i)")
+ self.runCmd("breakpoint modify -c ($eax&&i)")
self.runCmd("run")
self.expect("process status", PROCESS_STOPPED,
diff --git a/test/lang/c/const_variables/TestConstVariables.py b/test/lang/c/const_variables/TestConstVariables.py
index 8c2c6b279..187ed9a7f 100644
--- a/test/lang/c/const_variables/TestConstVariables.py
+++ b/test/lang/c/const_variables/TestConstVariables.py
@@ -17,7 +17,7 @@ class ConstVariableTestCase(TestBase):
self.buildDsym()
self.const_variable()
- @skipIfLinux # This test works with gcc, but fails with newer version of clang on Linux due to a clang issue. Bug number TDB.
+ @skipIfLinux # This test works with gcc, but fails with newer version of clang on Linux due to a clang issue. Fails for icc as well. Bug number TDB.
@dwarf_test
@unittest2.expectedFailure(13314878)
def test_with_dwarf_and_run_command(self):