From a7193e40e2fa00a1fbb296416d711cc4e3f2a3c0 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 18 Nov 2009 17:42:17 +0000 Subject: [PATCH] lit: Fix exclude dirs functionality. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89210 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/TestFormats.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utils/lit/TestFormats.py b/utils/lit/TestFormats.py index f067baedca4..7305c794a2a 100644 --- a/utils/lit/TestFormats.py +++ b/utils/lit/TestFormats.py @@ -119,8 +119,9 @@ class OneCommandPerFileTest: if not self.recursive: subdirs[:] = [] - if dirname == '.svn' or dirname in localConfig.excludes: - continue + subdirs[:] = [d for d in subdirs + if (d != '.svn' and + d not in localConfig.excludes)] for filename in filenames: if (not self.pattern.match(filename) or