[Lldb-commits] [lldb] r187501 - Update break conditions test to have consistent behaviour on all test suite compilers.
Matt Kopec
Matt.Kopec at intel.com
Wed Jul 31 09:27:28 PDT 2013
Author: mkopec
Date: Wed Jul 31 11:27:27 2013
New Revision: 187501
URL: http://llvm.org/viewvc/llvm-project?rev=187501&view=rev
Log:
Update break conditions test to have consistent behaviour on all test suite compilers.
Also update comment in const variables test to reflect ICC status.
Modified:
lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
lldb/trunk/test/lang/c/const_variables/TestConstVariables.py
Modified: lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py?rev=187501&r1=187500&r2=187501&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py (original)
+++ lldb/trunk/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py Wed Jul 31 11:27:27 2013
@@ -121,7 +121,7 @@ class BreakpointConditionsTestCase(TestB
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,
Modified: lldb/trunk/test/lang/c/const_variables/TestConstVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/const_variables/TestConstVariables.py?rev=187501&r1=187500&r2=187501&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/const_variables/TestConstVariables.py (original)
+++ lldb/trunk/test/lang/c/const_variables/TestConstVariables.py Wed Jul 31 11:27:27 2013
@@ -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):
More information about the lldb-commits
mailing list