Changeset 92637 in webkit


Ignore:
Timestamp:
Aug 8, 2011 2:37:55 PM (13 years ago)
Author:
abarth@webkit.org
Message:

Deprecate rebaseline-chromium-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=65873

Reviewed by Dimitri Glazkov.

This script never worked correctly and now is redundant with more
modern infrastructure for rebaselining tests. This patch deprecates
the script in order to flush out any issues with the new tools. Once
folks are happy with the new tools, we'll delete this script.

  • Scripts/rebaseline-chromium-webkit-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r92636 r92637  
     12011-08-08  Adam Barth  <abarth@webkit.org>
     2
     3        Deprecate rebaseline-chromium-webkit-tests
     4        https://bugs.webkit.org/show_bug.cgi?id=65873
     5
     6        Reviewed by Dimitri Glazkov.
     7
     8        This script never worked correctly and now is redundant with more
     9        modern infrastructure for rebaselining tests.  This patch deprecates
     10        the script in order to flush out any issues with the new tools.  Once
     11        folks are happy with the new tools, we'll delete this script.
     12
     13        * Scripts/rebaseline-chromium-webkit-tests:
     14
    1152011-08-08  Dimitri Glazkov  <dglazkov@chromium.org>
    216
  • trunk/Tools/Scripts/rebaseline-chromium-webkit-tests

    r89794 r92637  
    3232import webkitpy.to_be_moved.rebaseline_chromium_webkit_tests
    3333
     34
    3435if __name__ == '__main__':
    35     # FIXME: We shouldn't pass sys.argv to rebaseline_chromium_webkit_tests.
    36     sys.exit(webkitpy.to_be_moved.rebaseline_chromium_webkit_tests.main(sys.argv[1:]))
     36    print """This script is depreciated.  Please use use "webkit-patch rebaseline-expectations" instead.
     37
     38If that command does not work properly, please file a bug and CC abarth. If you
     39really need to use the old script, run this command again with
     40--use-deprecated-script as the first argument."""
     41
     42    if len(sys.argv) > 1 and sys.argv[1] == '--use-deprecated-script':
     43        sys.exit(webkitpy.to_be_moved.rebaseline_chromium_webkit_tests.main(sys.argv[2:]))
Note: See TracChangeset for help on using the changeset viewer.