| Index: slave/skia_slave_scripts/chromeos_run_decoding_tests.py
|
| diff --git a/slave/skia_slave_scripts/chromeos_run_gm.py b/slave/skia_slave_scripts/chromeos_run_decoding_tests.py
|
| similarity index 59%
|
| copy from slave/skia_slave_scripts/chromeos_run_gm.py
|
| copy to slave/skia_slave_scripts/chromeos_run_decoding_tests.py
|
| index 7d80b692c64fbd9eef654d52592482192c73764d..7729f4c19f1a1745bebd9472d199d157d26f22da 100644
|
| --- a/slave/skia_slave_scripts/chromeos_run_gm.py
|
| +++ b/slave/skia_slave_scripts/chromeos_run_decoding_tests.py
|
| @@ -3,17 +3,17 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -""" Run the Skia GM executable. """
|
| +""" Run the Skia skimage executable. """
|
|
|
| from build_step import BuildStep
|
| from chromeos_build_step import ChromeOSBuildStep
|
| -from run_gm import RunGM
|
| +from run_decoding_tests import RunDecodingTests
|
| import sys
|
|
|
|
|
| -class ChromeOSRunGM(ChromeOSBuildStep, RunGM):
|
| +class ChromeOSRunDecodingTests(ChromeOSBuildStep, RunDecodingTests):
|
| pass
|
|
|
|
|
| if '__main__' == __name__:
|
| - sys.exit(BuildStep.RunBuildStep(ChromeOSRunGM))
|
| + sys.exit(BuildStep.RunBuildStep(ChromeOSRunDecodingTests))
|
|
|