summaryrefslogtreecommitdiff
path: root/utils/lit
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2012-12-26 18:15:42 +0000
committerEli Bendersky <eliben@google.com>2012-12-26 18:15:42 +0000
commitf1a26cf9df900101b9cbea42b67f7466edc7deed (patch)
treed71872cf1c6ecb64e6c6ccb06e2987397a95a97e /utils/lit
parentb53be53c72ff7b3846f0ba990a889de444601e0b (diff)
downloadllvm-f1a26cf9df900101b9cbea42b67f7466edc7deed.tar.gz
llvm-f1a26cf9df900101b9cbea42b67f7466edc7deed.tar.bz2
llvm-f1a26cf9df900101b9cbea42b67f7466edc7deed.tar.xz
Fix comment typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171113 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit')
-rw-r--r--utils/lit/lit/TestRunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/lit/TestRunner.py b/utils/lit/lit/TestRunner.py
index 652e8b499c..75182b86fd 100644
--- a/utils/lit/lit/TestRunner.py
+++ b/utils/lit/lit/TestRunner.py
@@ -77,7 +77,7 @@ def executeShCmd(cmd, cfg, cwd, results):
# output. This is null until we have seen some output using
# stderr.
for i,j in enumerate(cmd.commands):
- # Apply the redirections, we use (N,) as a sentinal to indicate stdin,
+ # Apply the redirections, we use (N,) as a sentinel to indicate stdin,
# stdout, stderr for N equal to 0, 1, or 2 respectively. Redirects to or
# from a file are represented with a list [file, mode, file-object]
# where file-object is initially None.