Changeset 65011 in webkit


Ignore:
Timestamp:
Aug 9, 2010 3:11:08 PM (14 years ago)
Author:
victorw@chromium.org
Message:

2010-08-09 Victor Wang <victorw@chromium.org>

Reviewed by Ojan Vafai.

Upload incremental test results json to server by default.

https://bugs.webkit.org/show_bug.cgi?id=43743

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r64995 r65011  
     12010-08-09  Victor Wang  <victorw@chromium.org>
     2
     3        Reviewed by Ojan Vafai.
     4
     5        Upload incremental test results json to server by default.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=43743
     8
     9        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
     10
    1112010-08-09  Eric Seidel  <eric@webkit.org>
    212
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

    r64786 r65011  
    891891            BUILDER_BASE_URL, individual_test_timings,
    892892            self._expectations, result_summary, self._test_files_list,
    893             self._options.upload_incremental_results)
     893            not self._options.upload_full_results)
    894894
    895895        _log.debug("Finished writing JSON files.")
     
    904904        attrs = [("builder", self._options.builder_name)]
    905905        json_files = ["expectations.json"]
    906         if self._options.upload_incremental_results:
     906        if self._options.upload_full_results:
     907            json_files.append("results.json")
     908        else:
    907909            json_files.append("incremental_results.json")
    908         else:
    909             json_files.append("results.json")
    910910
    911911        files = [(file, os.path.join(self._options.results_directory, file))
     
    16621662            help=("If specified, upload results json files to this appengine "
    16631663                  "server.")),
    1664         optparse.make_option("--upload-incremental-results",
     1664        optparse.make_option("--upload-full-results",
    16651665            action="store_true",
    16661666            default=False,
    1667             help="If true, upload incremental json results to server."),
     1667            help="If true, upload full json results to server."),
    16681668    ]
    16691669
Note: See TracChangeset for help on using the changeset viewer.