Modified: trunk/Tools/ChangeLog (258955 => 258956)
--- trunk/Tools/ChangeLog 2020-03-24 23:17:09 UTC (rev 258955)
+++ trunk/Tools/ChangeLog 2020-03-24 23:27:48 UTC (rev 258956)
@@ -1,5 +1,14 @@
2020-03-24 Jonathan Bedard <[email protected]>
+ results.webkit.org: Documentation for uncollapsed failure endpoints is wrong
+ https://bugs.webkit.org/show_bug.cgi?id=209496
+
+ Rubber-stamped by Aakash Jain.
+
+ * resultsdbpy/resultsdbpy/view/templates/documentation.html:
+
+2020-03-24 Jonathan Bedard <[email protected]>
+
results.webkit.org: Filter suite results by expectation by default
https://bugs.webkit.org/show_bug.cgi?id=209500
Modified: trunk/Tools/resultsdbpy/resultsdbpy/view/templates/documentation.html (258955 => 258956)
--- trunk/Tools/resultsdbpy/resultsdbpy/view/templates/documentation.html 2020-03-24 23:17:09 UTC (rev 258955)
+++ trunk/Tools/resultsdbpy/resultsdbpy/view/templates/documentation.html 2020-03-24 23:27:48 UTC (rev 258956)
@@ -360,20 +360,24 @@
codeBlock('[\n' +
' {\n' +
' "configuration": <configuration-object-a>,\n' +
- ' "results": {\n' +
- ' "start_time": <UTC time test run started>,\n' +
- ' "uuid": <UUID for test run>,\n' +
- ' "suite.sub-1.test-1": "FAIL",\n' +
- ' "suite.sub-1.test-2": "FAIL",\n' +
- ' }\n' +
+ ' "results": [\n' +
+ ' {\n' +
+ ' "start_time": <UTC time test run started>,\n' +
+ ' "uuid": <UUID for test run>,\n' +
+ ' "suite.sub-1.test-1": "FAIL",\n' +
+ ' "suite.sub-1.test-2": "FAIL",\n' +
+ ' }\n' +
+ ' ]\n' +
' }, {\n' +
' "configuration": <configuration-object-b>,\n' +
- ' "results": {\n' +
- ' "start_time": <UTC time test run started>,\n' +
- ' "uuid": <UUID for test run>,\n' +
- ' "suite.sub-1.test-1": "FAIL",\n' +
- ' "suite.sub-2.test-1": "CRASH",\n' +
- ' }\n' +
+ ' "results": [\n' +
+ ' {\n' +
+ ' "start_time": <UTC time test run started>,\n' +
+ ' "uuid": <UUID for test run>,\n' +
+ ' "suite.sub-1.test-1": "FAIL",\n' +
+ ' "suite.sub-1.test-2": "CRASH",\n' +
+ ' }\n' +
+ ' ]\n' +
' }\n' +
']'),
`where <configuration-object-a> and <configuration-object-b> are both ${localLink(['Query Parameters', 'Configuration'], 'configuration objects')}.`,