summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-03-31 19:14:05 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-03-31 19:14:05 +0000
commite09ccab0ce2986d1ba6950f2eccc46fd1935ae68 (patch)
treeace4cde6a812a109f877f25c891e93c840392f3c /utils
parentd93bf04a0733210c376a79bc30570a58516b330c (diff)
downloadllvm-e09ccab0ce2986d1ba6950f2eccc46fd1935ae68.tar.gz
llvm-e09ccab0ce2986d1ba6950f2eccc46fd1935ae68.tar.bz2
llvm-e09ccab0ce2986d1ba6950f2eccc46fd1935ae68.tar.xz
Add a FIXME.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/lit/lit/TestRunner.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/lit/lit/TestRunner.py b/utils/lit/lit/TestRunner.py
index 5d008de76d..d10e4b030d 100644
--- a/utils/lit/lit/TestRunner.py
+++ b/utils/lit/lit/TestRunner.py
@@ -114,6 +114,8 @@ def executeShCmd(cmd, cfg, cwd, results):
else:
r[2] = open(r[0], r[1])
# Workaround a Win32 and/or subprocess bug when appending.
+ #
+ # FIXME: Actually, this is probably an instance of PR6753.
if r[1] == 'a':
r[2].seek(0, 2)
opened_files.append(r[2])