| OLD | NEW |
| 1 Tool to upload gtest-based json test results to test-results.appspot.com in the | 1 Tool to upload test results to test-results.appspot.com in the |
| 2 correct format. This is executed by the containing recipe\_module as a | 2 correct format. Supported test input format are gtest-based json and full json |
| 3 test results format. This is executed by the containing recipe\_module as a |
| 3 subprocess and should be used in recipes after gtest json has been generated. | 4 subprocess and should be used in recipes after gtest json has been generated. |
| 4 | 5 |
| 5 Most of this code was originally in build/scripts/slave/gtest. | 6 Most of this code was originally in build/scripts/slave/gtest. |
| 6 json\_results\_generator.py was mostly unchanged since it already had testing. | 7 json\_results\_generator.py was mostly unchanged since it already had testing. |
| 7 The other files were simplified to have cleaner interfaces and not have external | 8 The other files were simplified to have cleaner interfaces and not have external |
| 8 module dependencies. | 9 module dependencies. |
| 9 | 10 |
| 10 Example usage: | 11 Example usage: |
| 11 | 12 |
| 12 ./upload_gtest_test_results.py | 13 ./upload_test_results.py |
| 13 --test-type=webkit_tests --input-gtest-json=/tmp/gtest_input.json | 14 --test-type=webkit_tests --input-json=/tmp/gtest_input.json |
| 14 --master-name=chromium.webkit --build-number=2257 | 15 --master-name=chromium.webkit --build-number=2257 |
| 15 --builder-name='WebKit Win7 (dbg)' | 16 --builder-name='WebKit Win7 (dbg)' |
| 16 --chrome-revision=344402 | 17 --chrome-revision=344402 |
| OLD | NEW |