aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/test_pictures.py
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-14 17:01:28 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-01-14 17:01:28 +0000
commit30d4f8372c362dfa9e4ba8c2fd8e264fe6bb0dca (patch)
treee702d2d63add12d7497536c03ea1ec2fcc119910 /tools/test_pictures.py
parentdf79acdbab94b42b96999c531badeef36563b0cc (diff)
deprecate tools/test_rendering.py and tools/test_pictures.py
they will be removed entirely on/after Feb 1 unless there is objection BUG=skia:1943 R=borenet@google.com Author: epoger@google.com Review URL: https://codereview.chromium.org/135783003 git-svn-id: http://skia.googlecode.com/svn/trunk@13065 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools/test_pictures.py')
-rw-r--r--tools/test_pictures.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/test_pictures.py b/tools/test_pictures.py
index 7ccb3b8731..8cf7410136 100644
--- a/tools/test_pictures.py
+++ b/tools/test_pictures.py
@@ -8,7 +8,8 @@ Compares the rendererings of serialized SkPictures to expected images.
Launch with --help to see more information.
-TODO(epoger): Combine with overlapping tools/tests/render_pictures_test.py .
+TODO(epoger): We believe this tool is no longer used, so we have disabled it
+and will remove it on 1 Feb 2014 if nobody objects.
See https://code.google.com/p/skia/issues/detail?id=1943#c2
'''
# common Python modules
@@ -60,6 +61,11 @@ def Main(args):
@param The commandline argument list
"""
+ print ('We believe this tool is no longer used, so we have disabled it '
+ 'and will remove it on 1 Feb 2014 if nobody objects. See '
+ 'https://code.google.com/p/skia/issues/detail?id=1943#c2')
+ sys.exit(-1)
+
parser = optparse.OptionParser(USAGE_STRING % '%prog' + HELP_STRING)
parser.add_option('--render_dir', dest='render_dir',
help = ("specify the location to output the rendered files."