mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Don't traverse into .svn directories.
llvm-svn: 82978
This commit is contained in:
parent
2e54b03741
commit
92fcc49c24
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user