Title: [100873] trunk/Tools
- Revision
- 100873
- Author
- [email protected]
- Date
- 2011-11-20 15:40:12 -0800 (Sun, 20 Nov 2011)
Log Message
Include the master name when querying the test results server.
This will soon be required since leaving the master name out mean
that multiple files could match the query.
* Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (100872 => 100873)
--- trunk/Tools/ChangeLog 2011-11-20 22:55:45 UTC (rev 100872)
+++ trunk/Tools/ChangeLog 2011-11-20 23:40:12 UTC (rev 100873)
@@ -1,3 +1,11 @@
+2011-11-20 Ojan Vafai <[email protected]>
+
+ Include the master name when querying the test results server.
+ This will soon be required since leaving the master name out mean
+ that multiple files could match the query.
+
+ * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
+
2011-11-19 Ojan Vafai <[email protected]>
Fix jsonp callback code to add the callback if json content
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py (100872 => 100873)
--- trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py 2011-11-20 22:55:45 UTC (rev 100872)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py 2011-11-20 23:40:12 UTC (rev 100873)
@@ -191,8 +191,7 @@
TIMES_MS_FILENAME = "times_ms.json"
INCREMENTAL_RESULTS_FILENAME = "incremental_results.json"
- URL_FOR_TEST_LIST_JSON = \
- "http://%s/testfile?builder=%s&name=%s&testlistjson=1&testtype=%s"
+ URL_FOR_TEST_LIST_JSON = "http://%s/testfile?builder=%s&name=%s&testlistjson=1&testtype=%s&master=%s"
# FIXME: Remove generate_incremental_results once the reference to it in
# http://src.chromium.org/viewvc/chrome/trunk/tools/build/scripts/slave/gtest_slave_utils.py
@@ -419,7 +418,8 @@
(urllib2.quote(self._test_results_server),
urllib2.quote(self._builder_name),
self.RESULTS_FILENAME,
- urllib2.quote(self._test_type)))
+ urllib2.quote(self._test_type),
+ urllib2.quote(self._master_name)))
try:
# FIXME: We should talk to the network via a Host object.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes