Chromium Code Reviews| Index: master/skia_master_scripts/housekeeping_percommit_factory.py |
| diff --git a/master/skia_master_scripts/housekeeping_percommit_factory.py b/master/skia_master_scripts/housekeeping_percommit_factory.py |
| index df2067029318816b4f3e94bd657dec0ec9749021..07eb752c0f3435de092d149e96e80772d0a4f3c2 100644 |
| --- a/master/skia_master_scripts/housekeeping_percommit_factory.py |
| +++ b/master/skia_master_scripts/housekeeping_percommit_factory.py |
| @@ -31,6 +31,7 @@ class HouseKeepingPerCommitFactory(skia_factory.SkiaFactory): |
| self.UpdateSteps() |
| self.Compile(clobber) |
| + # TODO (borenet): Move these to a self-tests bot. |
|
epoger
2014/02/07 14:49:40
Please add a link to the bug, http://skbug.com/214
|
| # Build tools and run their unittests. |
| self._skia_cmd_obj.AddRunCommand( |
| command=self.TargetPath.join('tools', 'tests', 'run.sh'), |
| @@ -41,6 +42,12 @@ class HouseKeepingPerCommitFactory(skia_factory.SkiaFactory): |
| command=self.TargetPath.join('gm', 'tests', 'run.sh'), |
| description='RunGmSelfTests') |
| + # Run unittests for Anroid platform_tools |
| + self._skia_cmd_obj.AddRunCommand( |
| + command=['python', self.TargetPath.join('platform_tools', 'android', |
| + 'tests', 'run_all.py')], |
| + description='RunAndroidPlatformSelfTests') |
| + |
| # Check for static initializers. |
| self.AddSlaveScript(script='detect_static_initializers.py', |
| description='DetectStaticInitializers') |