Runtest support for tests that need 'make' not 'mmm' to build.
Change-Id: I0508db2578826249f9bf4756d5adc6f95e841231
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user