summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2015-06-18 05:27:05 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2015-06-18 05:27:05 +0000
commit58ef391f3ef80cc4e4e375b7e2f1f397afd47b90 (patch)
tree5745c92f275d16ef1c8c47b79e523929b3169a36 /lldb/test/functionalities
parent8b2492f2a0e0b143c4c4f17765901e568af92e68 (diff)
downloadbcm5719-llvm-58ef391f3ef80cc4e4e375b7e2f1f397afd47b90.tar.gz
bcm5719-llvm-58ef391f3ef80cc4e4e375b7e2f1f397afd47b90.zip
Fix a variety of typos.
No functional change. llvm-svn: 239995
Diffstat (limited to 'lldb/test/functionalities')
-rw-r--r--lldb/test/functionalities/stop-hook/TestStopHookMechanism.py2
-rw-r--r--lldb/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py2
-rw-r--r--lldb/test/functionalities/thread/create_during_step/main.cpp2
-rw-r--r--lldb/test/functionalities/thread/exit_during_step/main.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/lldb/test/functionalities/stop-hook/TestStopHookMechanism.py b/lldb/test/functionalities/stop-hook/TestStopHookMechanism.py
index 41b791d94f8..87be6d9bba9 100644
--- a/lldb/test/functionalities/stop-hook/TestStopHookMechanism.py
+++ b/lldb/test/functionalities/stop-hook/TestStopHookMechanism.py
@@ -66,7 +66,7 @@ class StopHookMechanismTestCase(TestBase):
child.expect_exact(prompt)
child.sendline('target stop-hook list')
- # Now run the program, expect to stop at the the first breakpoint which is within the stop-hook range.
+ # Now run the program, expect to stop at the first breakpoint which is within the stop-hook range.
child.expect_exact(prompt)
child.sendline('run')
# Make sure we see the stop hook text from the stop of the process from the run hitting the first breakpoint
diff --git a/lldb/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py b/lldb/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py
index 276bb433daa..1792bf994cb 100644
--- a/lldb/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py
+++ b/lldb/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py
@@ -62,7 +62,7 @@ class StopHookForMultipleThreadsTestCase(TestBase):
child.sendline('breakpoint set -f main.cpp -l %d' % self.thread_function)
child.expect_exact(prompt)
- # Now run the program, expect to stop at the the first breakpoint which is within the stop-hook range.
+ # Now run the program, expect to stop at the first breakpoint which is within the stop-hook range.
child.sendline('run')
child.expect_exact("Process") # 'Process 2415 launched', 'Process 2415 stopped'
child.expect_exact(prompt)
diff --git a/lldb/test/functionalities/thread/create_during_step/main.cpp b/lldb/test/functionalities/thread/create_during_step/main.cpp
index f64831be5cb..c5a36e02394 100644
--- a/lldb/test/functionalities/thread/create_during_step/main.cpp
+++ b/lldb/test/functionalities/thread/create_during_step/main.cpp
@@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//
// This test is intended to create a situation in which one thread will be
-// created while a the debugger is stepping in another thread.
+// created while the debugger is stepping in another thread.
#include <pthread.h>
#include <atomic>
diff --git a/lldb/test/functionalities/thread/exit_during_step/main.cpp b/lldb/test/functionalities/thread/exit_during_step/main.cpp
index 99492123fde..8c641699256 100644
--- a/lldb/test/functionalities/thread/exit_during_step/main.cpp
+++ b/lldb/test/functionalities/thread/exit_during_step/main.cpp
@@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//
// This test is intended to create a situation in which one thread will exit
-// while a the debugger is stepping in another thread.
+// while the debugger is stepping in another thread.
#include <pthread.h>
#include <unistd.h>
OpenPOWER on IntegriCloud