summaryrefslogtreecommitdiffstats
path: root/lldb/test
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2014-07-01 21:22:11 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2014-07-01 21:22:11 +0000
commitd93c4a33395a7d9b960ec64348a07ba204d51017 (patch)
tree8cb726e00581c790adf105b4f2d8d4d8c1ca9efe /lldb/test
parent8e9765352888379973132b3e6c2f47b3ba82d7ce (diff)
downloadbcm5719-llvm-d93c4a33395a7d9b960ec64348a07ba204d51017.tar.gz
bcm5719-llvm-d93c4a33395a7d9b960ec64348a07ba204d51017.zip
Fix typos.
llvm-svn: 212132
Diffstat (limited to 'lldb/test')
-rw-r--r--lldb/test/README-TestSuite2
-rwxr-xr-xlldb/test/dotest.py6
-rw-r--r--lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py4
-rw-r--r--lldb/test/lang/objc/objc-stepping/TestObjCStepping.py2
4 files changed, 7 insertions, 7 deletions
diff --git a/lldb/test/README-TestSuite b/lldb/test/README-TestSuite
index aea80b27a37..eba34e65258 100644
--- a/lldb/test/README-TestSuite
+++ b/lldb/test/README-TestSuite
@@ -60,7 +60,7 @@ o make directory
based rules to build binaries for the inferiors.
By default, the built executable name is a.out, which can be overwritten by
- specifying your EXE make variable, via the Makefile under the specfic test
+ specifying your EXE make variable, via the Makefile under the specific test
directory or via supplying a Python dictionary to the build method in your
Python test script. An example of the latter can be found in
test/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py, where:
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py
index c80b3eba22c..7d23f34080f 100755
--- a/lldb/test/dotest.py
+++ b/lldb/test/dotest.py
@@ -189,7 +189,7 @@ dumpSysPath = False
bmExecutable = None
# The breakpoint specification of bmExecutable, as specified by the '-x' option.
bmBreakpointSpec = None
-# The benchamrk iteration count, as specified by the '-y' option.
+# The benchmark iteration count, as specified by the '-y' option.
bmIterationCount = -1
# By default, don't exclude any directories. Use '-X' to add one excluded directory.
@@ -275,7 +275,7 @@ def usage(parser):
print """
Examples:
-This is an example of using the -f option to pinpoint to a specfic test class
+This is an example of using the -f option to pinpoint to a specific test class
and test method to be run:
$ ./dotest.py -f ClassTypesTestCase.test_with_dsym_and_run_command
@@ -1495,7 +1495,7 @@ for ia in range(len(archs) if iterArchs else 1):
Overwrite addError(), addFailure(), and addExpectedFailure() methods
to enable each test instance to track its failure/error status. It
is used in the LLDB test framework to emit detailed trace messages
- to a log file for easier human inspection of test failres/errors.
+ to a log file for easier human inspection of test failures/errors.
"""
__singleton__ = None
__ignore_singleton__ = False
diff --git a/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py b/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py
index bd3bcc4b721..fa32b37bd38 100644
--- a/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py
+++ b/lldb/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py
@@ -415,7 +415,7 @@ class WatchpointCommandsTestCase(TestBase):
substrs = ['stop reason = watchpoint'])
# Before continuing, we'll disable the watchpoint, which means we won't
- # stop agian after this.
+ # stop again after this.
self.runCmd("watchpoint disable")
self.expect("watchpoint list -v",
@@ -473,7 +473,7 @@ class WatchpointCommandsTestCase(TestBase):
substrs = ['stop reason = breakpoint'])
# Before continuing, we'll enable the watchpoint, which means we will
- # stop agian after this.
+ # stop again after this.
self.runCmd("watchpoint enable")
self.expect("watchpoint list -v",
diff --git a/lldb/test/lang/objc/objc-stepping/TestObjCStepping.py b/lldb/test/lang/objc/objc-stepping/TestObjCStepping.py
index 84f7a0d7b9a..92aa3ec5629 100644
--- a/lldb/test/lang/objc/objc-stepping/TestObjCStepping.py
+++ b/lldb/test/lang/objc/objc-stepping/TestObjCStepping.py
@@ -130,7 +130,7 @@ class TestObjCStepping(TestBase):
line_number = thread.GetFrameAtIndex(0).GetLineEntry().GetLine()
self.assertTrue (line_number == self.sourceBase_returnsStruct_start_line, "Stepped through super into SourceBase returnsStruct.")
- # Cool now continue to get past the call that intializes the Observer, and then do our steps in again to see that
+ # Cool now continue to get past the call that initializes the Observer, and then do our steps in again to see that
# we can find our way when we're stepping through a KVO swizzled object.
threads = lldbutil.continue_to_breakpoint (process, break3)
OpenPOWER on IntegriCloud