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
diff --git a/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py b/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
index 112a588..25a9ed1 100644
--- a/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
+++ b/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
@@ -121,7 +121,7 @@
         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 8c2c6b2..187ed9a 100644
--- a/test/lang/c/const_variables/TestConstVariables.py
+++ b/test/lang/c/const_variables/TestConstVariables.py
@@ -17,7 +17,7 @@
         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):