lit: Ignore dot files when scanning for tests (e.g., editor temprary files,
authorDaniel Dunbar <daniel@zuster.org>
Wed, 10 Feb 2010 21:00:55 +0000 (21:00 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Wed, 10 Feb 2010 21:00:55 +0000 (21:00 +0000)
etc.)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95803 91177308-0d34-0410-b5e6-96231b3b80d8

utils/lit/lit/TestFormats.py

index fba0ce2ce462c85ab1049d98b4df6e00578888c5..d87a467559c287ee1ca0347cfcb852a351056702 100644 (file)
@@ -87,6 +87,10 @@ class FileBasedTest(object):
                             litConfig, localConfig):
         source_path = testSuite.getSourcePath(path_in_suite)
         for filename in os.listdir(source_path):
+            # Ignore dot files.
+            if filename.startswith('.'):
+                continue
+
             filepath = os.path.join(source_path, filename)
             if not os.path.isdir(filepath):
                 base,ext = os.path.splitext(filename)
@@ -137,7 +141,8 @@ class OneCommandPerFileTest:
                               d not in localConfig.excludes)]
 
             for filename in filenames:
-                if (not self.pattern.match(filename) or
+                if (filename.startswith('.') or
+                    not self.pattern.match(filename) or
                     filename in localConfig.excludes):
                     continue