Runtest support for tests that need 'make' not 'mmm' to build.

Change-Id: I0508db2578826249f9bf4756d5adc6f95e841231
This commit is contained in:
Brett Chabot
2010-04-15 15:43:04 -07:00
parent 90218acfdf
commit 8dc9eb8ba6
5 changed files with 63 additions and 23 deletions

View File

@@ -32,6 +32,7 @@ class AbstractTestSuite(object):
self._suite = None
self._description = ''
self._extra_build_args = ''
self._is_full_make = False
def GetName(self):
return self._name
@@ -88,6 +89,13 @@ class AbstractTestSuite(object):
self._extra_build_args = build_args
return self
def IsFullMake(self):
return self._is_full_make
def SetIsFullMake(self, full_make):
self._is_full_make = full_make
return self
def Run(self, options, adb):
"""Runs the test.