# HG changeset patch # User Gregory Szorc # Date 1398194973 25200 # Node ID 4cc3aaa3a2eeb336da89bca6964a4a229ec26375 # Parent d839e4820da702448c312b8c771e08b632c3fa70 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. diff -r d839e4820da7 -r 4cc3aaa3a2ee 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