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/thread/TestNumThreads.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/thread/TestNumThreads.py')
-rw-r--r-- | lldb/test/functionalities/thread/TestNumThreads.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/thread/TestNumThreads.py b/lldb/test/functionalities/thread/TestNumThreads.py index 9c75991cddf..444853510d7 100644 --- a/lldb/test/functionalities/thread/TestNumThreads.py +++ b/lldb/test/functionalities/thread/TestNumThreads.py @@ -41,7 +41,7 @@ class NumberOfThreadsTestCase(TestBase): # The breakpoint list should show 3 locations. self.expect("breakpoint list -f", "Breakpoint location shown correctly", - substrs = ["1: file ='main.c', line = %d, locations = 1" % self.line]) + substrs = ["1: file = 'main.c', line = %d, locations = 1" % self.line]) # Run the program. self.runCmd("run", RUN_SUCCEEDED) |