run-tests: remove redundant test name filter
authorGregory Szorc <gregory.szorc@gmail.com>
Tue, 22 Apr 2014 12:29:33 -0700
changeset 21508 4cc3aaa3a2ee
parent 21507 d839e4820da7
child 21509 d21d53ee0d7a
run-tests: remove redundant test name filter TestSuite.run() doesn't need to filter tests by name because that already happens elsewhere. Garbage in garbage out applies.
tests/run-tests.py
--- a/tests/run-tests.py	Tue Apr 22 11:38:14 2014 -0700
+++ b/tests/run-tests.py	Tue Apr 22 12:29:33 2014 -0700
@@ -1161,10 +1161,6 @@
                     if ignored:
                         continue
 
-                if not test.name.lower().startswith('test-'):
-                    result.addSkip(test, 'not a test file')
-                    continue
-
             tests.append(test)
 
         jobs = self._runner.options.jobs