diff options
author | Matt Kopec <Matt.Kopec@intel.com> | 2013-06-17 19:00:31 +0000 |
---|---|---|
committer | Matt Kopec <Matt.Kopec@intel.com> | 2013-06-17 19:00:31 +0000 |
commit | 36e5a7db2afad1f014b27acdc78d16a445084fb9 (patch) | |
tree | 544aeffd1cd42657d2e9099e4708686316a4d666 /lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py | |
parent | eb90fd1c3b53a51b8e0469ad8539cf62f3ee5f38 (diff) | |
download | bcm5719-llvm-36e5a7db2afad1f014b27acdc78d16a445084fb9.tar.gz bcm5719-llvm-36e5a7db2afad1f014b27acdc78d16a445084fb9.zip |
Fix single whitespace before breakpoint filename in some tests due to r183932.
llvm-svn: 184104
Diffstat (limited to 'lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py')
-rw-r--r-- | lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py b/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py index e6fe72e7350..e5dc11551e0 100644 --- a/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py +++ b/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py @@ -62,12 +62,12 @@ class BreakpointCommandTestCase(TestBase): # The breakpoint list now only contains breakpoint 1. self.expect("breakpoint list", "Breakpoints 1 & 2 created", - substrs = ["1: file ='main.c', line = %d, locations = 1" % self.line, - "2: file ='main.c', line = %d, locations = 1" % self.line] ) + substrs = ["1: file = 'main.c', line = %d, locations = 1" % self.line, + "2: file = 'main.c', line = %d, locations = 1" % self.line] ) self.expect("breakpoint list -f", "Breakpoints 1 & 2 created", - substrs = ["1: file ='main.c', line = %d, locations = 1" % self.line, - "2: file ='main.c', line = %d, locations = 1" % self.line], + substrs = ["1: file = 'main.c', line = %d, locations = 1" % self.line, + "2: file = 'main.c', line = %d, locations = 1" % self.line], patterns = ["1.1: .+at main.c:%d, .+unresolved, hit count = 0" % self.line, "2.1: .+at main.c:%d, .+unresolved, hit count = 0" % self.line]) @@ -143,13 +143,13 @@ class BreakpointCommandTestCase(TestBase): # The breakpoint list now only contains breakpoint 1. self.expect("breakpoint list -f", "Breakpoint 1 exists", - substrs = ["1: file ='main.c', line = %d, locations = 1, resolved = 1" % + substrs = ["1: file = 'main.c', line = %d, locations = 1, resolved = 1" % self.line, "hit count = 1"]) # Not breakpoint 2. self.expect("breakpoint list -f", "No more breakpoint 2", matching=False, - substrs = ["2: file ='main.c', line = %d, locations = 1, resolved = 1" % + substrs = ["2: file = 'main.c', line = %d, locations = 1, resolved = 1" % self.line]) # Run the program again, with breakpoint 1 remaining. |