Chromium Code Reviews| Index: master/skia_master_scripts/factory.py |
| diff --git a/master/skia_master_scripts/factory.py b/master/skia_master_scripts/factory.py |
| index 19d0f327aaa40f08c2c318c89cad5faa6c710308..e1d0484d5b271ea4e591abc624b4aa3067cda183 100644 |
| --- a/master/skia_master_scripts/factory.py |
| +++ b/master/skia_master_scripts/factory.py |
| @@ -43,6 +43,9 @@ _COMPILE_STEP_PREFIX = 'Build' |
| _COMPILE_RETRY_PREFIX = 'Retry_' + _COMPILE_STEP_PREFIX |
| _COMPILE_NO_WERR_PREFIX = 'Retry_NoWarningsAsErrors_' + _COMPILE_STEP_PREFIX |
| +# EPOGER: how can I share this definition with compare_gms.py? |
|
borenet
2014/06/05 14:36:10
global_variables.json.
|
| +LATEST_GM_FAILURES_PREAMBLE = 'View latest GM failures for this builder at: ' |
| + |
| class SkiaFactory(BuildFactory): |
| """Encapsulates data and methods common to the Skia master.cfg files.""" |
| @@ -531,6 +534,9 @@ class SkiaFactory(BuildFactory): |
| """Compare the actually-generated GM images to the checked-in baselines.""" |
| self.AddSlaveScript(script='compare_gms.py', |
| description='CompareGMs', |
| + get_props_from_stdout={ |
|
epoger
2014/06/04 21:55:11
Unfortunately, this doesn't work.
https://github.
borenet
2014/06/05 14:36:10
We can probably change the logic in master/skia_ma
epoger
2014/06/05 15:08:43
Ultimately, my vision is of something like http://
|
| + 'latest_gm_failures_url': |
| + '%s(\w+)' % LATEST_GM_FAILURES_PREAMBLE}, |
| is_rebaseline_step=True) |
| def CompareRenderedSKPs(self): |