aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-31 18:12:18 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-31 18:12:18 +0000
commited92df08dbfc95ea8ec253b8e7f564904e219339 (patch)
treef277b3ff3b7e61d6d89ebe6dc5115288c0771575
parent286d36832c597772d8796f74a08c1e56185b3de5 (diff)
MultiTestRunner: Fix invalid warning when pointing 'lit' directly at a test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77690 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/test/MultiTestRunner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/test/MultiTestRunner.py b/utils/test/MultiTestRunner.py
index 9980e651a3..cccc6e2360 100755
--- a/utils/test/MultiTestRunner.py
+++ b/utils/test/MultiTestRunner.py
@@ -36,6 +36,7 @@ def getTests(cfg, inputs):
if not os.path.isdir(path):
yield path
+ continue
foundOne = False
for dirpath,dirnames,filenames in os.walk(path):