[Lldb-commits] [lldb] r116705 - in /lldb/trunk/test: array_types/ bitfields/ breakpoint_command/ class_types/ conditional_break/ dead-strip/ enum_types/ forward/ function_types/ global_variables/ load_unload/ set_values/ signal/ stl/ threads/ unsigned_types/
Johnny Chen
johnny.chen at apple.com
Mon Oct 18 08:44:42 PDT 2010
Author: johnny
Date: Mon Oct 18 10:44:42 2010
New Revision: 116705
URL: http://llvm.org/viewvc/llvm-project?rev=116705&view=rev
Log:
The StateType representation has been changed. Modify the test cases to accommodate.
Modified:
lldb/trunk/test/array_types/TestArrayTypes.py
lldb/trunk/test/bitfields/TestBitfields.py
lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py
lldb/trunk/test/class_types/TestClassTypes.py
lldb/trunk/test/class_types/TestClassTypesDisassembly.py
lldb/trunk/test/conditional_break/TestConditionalBreak.py
lldb/trunk/test/dead-strip/TestDeadStrip.py
lldb/trunk/test/enum_types/TestEnumTypes.py
lldb/trunk/test/forward/TestForwardDeclaration.py
lldb/trunk/test/function_types/TestFunctionTypes.py
lldb/trunk/test/global_variables/TestGlobalVariables.py
lldb/trunk/test/load_unload/TestLoadUnload.py
lldb/trunk/test/set_values/TestSetValues.py
lldb/trunk/test/signal/TestSendSignal.py
lldb/trunk/test/stl/TestStdCXXDisassembly.py
lldb/trunk/test/threads/TestPrintStackTraces.py
lldb/trunk/test/unsigned_types/TestUnsignedTypes.py
Modified: lldb/trunk/test/array_types/TestArrayTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/array_types/TestArrayTypes.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/array_types/TestArrayTypes.py (original)
+++ lldb/trunk/test/array_types/TestArrayTypes.py Mon Oct 18 10:44:42 2010
@@ -58,7 +58,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
@@ -116,7 +116,7 @@
# Sanity check the print representation of process.
proc = repr(self.process)
self.expect(proc, msg="Process looks good", exe=False,
- substrs = ["state = Stopped",
+ substrs = ["state = stopped",
"executable = a.out"])
# The stop reason of the thread should be breakpoint.
Modified: lldb/trunk/test/bitfields/TestBitfields.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/bitfields/TestBitfields.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/bitfields/TestBitfields.py (original)
+++ lldb/trunk/test/bitfields/TestBitfields.py Mon Oct 18 10:44:42 2010
@@ -52,7 +52,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
Modified: lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py (original)
+++ lldb/trunk/test/breakpoint_command/TestBreakpointCommand.py Mon Oct 18 10:44:42 2010
@@ -113,7 +113,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 2.
Modified: lldb/trunk/test/class_types/TestClassTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_types/TestClassTypes.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/class_types/TestClassTypes.py (original)
+++ lldb/trunk/test/class_types/TestClassTypes.py Mon Oct 18 10:44:42 2010
@@ -80,7 +80,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
@@ -127,7 +127,7 @@
self.fail("SBTarget.LaunchProcess() failed")
if self.process.GetState() != lldb.eStateStopped:
- self.fail("Process should be in the 'Stopped' state, "
+ self.fail("Process should be in the 'stopped' state, "
"instead the actual state is: '%s'" %
lldbutil.StateTypeString(self.process.GetState()))
@@ -167,7 +167,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
Modified: lldb/trunk/test/class_types/TestClassTypesDisassembly.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_types/TestClassTypesDisassembly.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/class_types/TestClassTypesDisassembly.py (original)
+++ lldb/trunk/test/class_types/TestClassTypesDisassembly.py Mon Oct 18 10:44:42 2010
@@ -54,7 +54,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# We should be stopped on the ctor function of class C.
Modified: lldb/trunk/test/conditional_break/TestConditionalBreak.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/conditional_break/TestConditionalBreak.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/conditional_break/TestConditionalBreak.py (original)
+++ lldb/trunk/test/conditional_break/TestConditionalBreak.py Mon Oct 18 10:44:42 2010
@@ -102,7 +102,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped', 'stop reason = breakpoint'])
+ substrs = ['state is stopped', 'stop reason = breakpoint'])
# The frame info for frame #0 points to a.out`c and its immediate caller
# (frame #1) points to a.out`a.
Modified: lldb/trunk/test/dead-strip/TestDeadStrip.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dead-strip/TestDeadStrip.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/dead-strip/TestDeadStrip.py (original)
+++ lldb/trunk/test/dead-strip/TestDeadStrip.py Mon Oct 18 10:44:42 2010
@@ -43,7 +43,7 @@
# The stop reason of the thread should be breakpoint (breakpoint #1).
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'a.out`f1',
'stop reason = breakpoint'])
@@ -55,7 +55,7 @@
# The stop reason of the thread should be breakpoint (breakpoint #3).
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'a.out`f3',
'stop reason = breakpoint'])
Modified: lldb/trunk/test/enum_types/TestEnumTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/enum_types/TestEnumTypes.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/enum_types/TestEnumTypes.py (original)
+++ lldb/trunk/test/enum_types/TestEnumTypes.py Mon Oct 18 10:44:42 2010
@@ -43,7 +43,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
Modified: lldb/trunk/test/forward/TestForwardDeclaration.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/forward/TestForwardDeclaration.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/forward/TestForwardDeclaration.py (original)
+++ lldb/trunk/test/forward/TestForwardDeclaration.py Mon Oct 18 10:44:42 2010
@@ -36,7 +36,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
Modified: lldb/trunk/test/function_types/TestFunctionTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/function_types/TestFunctionTypes.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/function_types/TestFunctionTypes.py (original)
+++ lldb/trunk/test/function_types/TestFunctionTypes.py Mon Oct 18 10:44:42 2010
@@ -41,7 +41,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
Modified: lldb/trunk/test/global_variables/TestGlobalVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/global_variables/TestGlobalVariables.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/global_variables/TestGlobalVariables.py (original)
+++ lldb/trunk/test/global_variables/TestGlobalVariables.py Mon Oct 18 10:44:42 2010
@@ -41,7 +41,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
Modified: lldb/trunk/test/load_unload/TestLoadUnload.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/load_unload/TestLoadUnload.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/load_unload/TestLoadUnload.py (original)
+++ lldb/trunk/test/load_unload/TestLoadUnload.py Mon Oct 18 10:44:42 2010
@@ -30,7 +30,7 @@
# The stop reason of the thread should be breakpoint and at a_function.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'a_function',
'stop reason = breakpoint'])
@@ -42,7 +42,7 @@
# The stop reason of the thread should be breakpoint and at a_function.
self.runCmd("continue")
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'a_function',
'stop reason = breakpoint'])
Modified: lldb/trunk/test/set_values/TestSetValues.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/set_values/TestSetValues.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/set_values/TestSetValues.py (original)
+++ lldb/trunk/test/set_values/TestSetValues.py Mon Oct 18 10:44:42 2010
@@ -65,7 +65,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
Modified: lldb/trunk/test/signal/TestSendSignal.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/signal/TestSendSignal.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/signal/TestSendSignal.py (original)
+++ lldb/trunk/test/signal/TestSendSignal.py Mon Oct 18 10:44:42 2010
@@ -43,7 +43,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped',
+ substrs = ['state is stopped',
'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
@@ -52,7 +52,7 @@
self.runCmd("process status")
output = self.res.GetOutput()
- pid = re.match("Process (.*) Stopped", output).group(1)
+ pid = re.match("Process (.*) stopped", output).group(1)
# After resuming the process, send it a SIGUSR1 signal.
@@ -73,7 +73,7 @@
# Make the interaction mode be synchronous again.
self.dbg.SetAsync(False)
self.expect("process status", STOPPED_DUE_TO_SIGNAL,
- startstr = "Process %s Stopped" % pid,
+ startstr = "Process %s stopped" % pid,
substrs = ['stop reason = signal SIGUSR1'])
self.expect("thread backtrace", STOPPED_DUE_TO_SIGNAL,
substrs = ['stop reason = signal SIGUSR1'])
Modified: lldb/trunk/test/stl/TestStdCXXDisassembly.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/stl/TestStdCXXDisassembly.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/stl/TestStdCXXDisassembly.py (original)
+++ lldb/trunk/test/stl/TestStdCXXDisassembly.py Mon Oct 18 10:44:42 2010
@@ -42,10 +42,10 @@
target = self.dbg.GetSelectedTarget()
process = target.GetProcess()
- # The process should be in a 'Stopped' state.
+ # The process should be in a 'stopped' state.
self.expect(repr(process), STOPPED_DUE_TO_BREAKPOINT, exe=False,
substrs = ["a.out",
- "Stopped"])
+ "stopped"])
# Disassemble the functions on the call stack.
self.runCmd("thread backtrace")
Modified: lldb/trunk/test/threads/TestPrintStackTraces.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/threads/TestPrintStackTraces.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/threads/TestPrintStackTraces.py (original)
+++ lldb/trunk/test/threads/TestPrintStackTraces.py Mon Oct 18 10:44:42 2010
@@ -35,7 +35,7 @@
self.fail("SBTarget.LaunchProcess() failed")
if self.process.GetState() != lldb.eStateStopped:
- self.fail("Process should be in the 'Stopped' state, "
+ self.fail("Process should be in the 'stopped' state, "
"instead the actual state is: '%s'" %
lldbutil.StateTypeString(self.process.GetState()))
Modified: lldb/trunk/test/unsigned_types/TestUnsignedTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/unsigned_types/TestUnsignedTypes.py?rev=116705&r1=116704&r2=116705&view=diff
==============================================================================
--- lldb/trunk/test/unsigned_types/TestUnsignedTypes.py (original)
+++ lldb/trunk/test/unsigned_types/TestUnsignedTypes.py Mon Oct 18 10:44:42 2010
@@ -44,7 +44,7 @@
# The stop reason of the thread should be breakpoint.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT,
- substrs = ['state is Stopped', 'stop reason = breakpoint'])
+ substrs = ['state is stopped', 'stop reason = breakpoint'])
# The breakpoint should have a hit count of 1.
self.expect("breakpoint list", BREAKPOINT_HIT_ONCE,
More information about the lldb-commits
mailing list