mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-15 00:38:42 +00:00
Don't traverse into .svn directories.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82978 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b0d8d78138
commit
705428ae4a
@ -261,7 +261,7 @@ def getTestsInSuite(ts, path_in_suite, litConfig,
|
|||||||
# Search subdirectories.
|
# Search subdirectories.
|
||||||
for filename in os.listdir(source_path):
|
for filename in os.listdir(source_path):
|
||||||
# FIXME: This doesn't belong here?
|
# 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
|
continue
|
||||||
|
|
||||||
# Ignore non-directories.
|
# Ignore non-directories.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user