aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):