aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-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 f9e75cd03f..5b24286e22 100755
--- a/utils/lit/lit.py
+++ b/utils/lit/lit.py
@@ -261,7 +261,7 @@ def getTestsInSuite(ts, path_in_suite, litConfig,
# Search subdirectories.
for filename in os.listdir(source_path):
# FIXME: This doesn't belong here?
- if filename == 'Output' or filename in lc.excludes:
+ if filename in ('Output', '.svn') or filename in lc.excludes:
continue
# Ignore non-directories.