Remove CTS tests from runtest.py

bug:24006796
bug:21762834
Change-Id: Ic321ac8871d85cbc0370e09a7eda3826da55b260
This commit is contained in:
Stuart Scott
2015-09-14 16:45:33 -07:00
parent b6fb814fb6
commit be975e3911
3 changed files with 0 additions and 199 deletions

View File

@@ -439,13 +439,6 @@ class TestRunner(object):
self._tests_to_run.append(test)
return self._tests_to_run
def _IsCtsTests(self, test_list):
"""Check if any cts tests are included in given list of tests to run."""
for test in test_list:
if test.GetSuite() == 'cts':
return True
return False
def _TurnOffVerifier(self, test_list):
"""Turn off the dalvik verifier if needed by given tests.