Skip to content

Commit ee82af0

Browse files
authored
Merge pull request #3104 from practicalswift/typo-fixes-20160621
[gardening] Fix typos in recently introduced file utils/run-test
2 parents 252d437 + 05c2653 commit ee82af0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

utils/run-test

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def is_subpath(path, d):
7878
return path.startswith(d)
7979

8080

81-
# Convert test path in source directory to correspoding path in build
81+
# Convert test path in source directory to corresponding path in build
8282
# directory. If the path is not sub path of test directories in source,
8383
# return the path as is.
8484
def normalize_test_path(path, build_dir, variant):
@@ -125,7 +125,7 @@ def main():
125125
type=arguments.type.shell_split,
126126
action=arguments.action.concat,
127127
default=[],
128-
help="key=value paramters they are directly passed to "
128+
help="key=value parameters they are directly passed to "
129129
"lit command in addition to `mode` and `subset`. "
130130
"Accept multiple.")
131131
parser.add_argument("--result-dir", type=os.path.realpath, metavar="PATH",
@@ -151,7 +151,7 @@ def main():
151151

152152
build_dir = args.build_dir
153153
if build_dir is not None:
154-
# Fixup build direcotry.
154+
# Fixup build directory.
155155
# build_dir can be:
156156
# build-root/ # assuming we are to test host deployment target.
157157
# build-root/swift-{tool-deployment_target}/
@@ -192,7 +192,7 @@ def main():
192192
break
193193
d = os.path.dirname(d)
194194
else:
195-
error_exit("Can't infer swift build direcory")
195+
error_exit("Can't infer swift build directory")
196196

197197
# Ensure we have up to date test dependency
198198
if args.build != 'skip' and is_build_dir_xcode(build_dir):

0 commit comments

Comments
 (0)