summaryrefslogtreecommitdiff
path: root/utils/lit
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-09 02:41:32 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-09 02:41:32 +0000
commit07d0bd4da7a53e2c3772b89f8e03e25907b60921 (patch)
treedd22bfd8a54312fe80379d2fe6391a4eb3ee85b5 /utils/lit
parent04cedd3c8f6c7d00e06f63a49aaef05d1d4a726f (diff)
downloadllvm-07d0bd4da7a53e2c3772b89f8e03e25907b60921.tar.gz
llvm-07d0bd4da7a53e2c3772b89f8e03e25907b60921.tar.bz2
llvm-07d0bd4da7a53e2c3772b89f8e03e25907b60921.tar.xz
Fix another refactoro.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit')
-rwxr-xr-xutils/lit/lit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/lit.py b/utils/lit/lit.py
index 62ebf51a71..ceb08f56b6 100755
--- a/utils/lit/lit.py
+++ b/utils/lit/lit.py
@@ -156,7 +156,7 @@ def getTestSuite(item, litConfig, cache):
# If we didn't find a config file, keep looking.
if not cfgpath:
parent,base = os.path.split(path)
- if parent == item:
+ if parent == path:
return (None, ())
ts, relative = search(parent)