Confirmed users
656
edits
No edit summary |
|||
| Line 53: | Line 53: | ||
</pre> | </pre> | ||
For documentation on using Mozmill's driver see: [https://developer.mozilla.org/en/Mozmill#Reference_Desk The Mozmill Reference Desk] | For documentation on using Mozmill's driver see: [https://developer.mozilla.org/en/Mozmill#Reference_Desk The Mozmill Reference Desk] | ||
=== Log Format === | |||
Peptest uses the new mozlog module to standardize on the logging format. | |||
<pre> | |||
PEP TEST-START | test_sanity.js | |||
PEP TEST-UNEXPECTED-FAIL | test_sanity.js | loadPage | unresponsive time: 116 ms | |||
PEP TEST-UNEXPECTED-FAIL | test_sanity.js | loadPage | unresponsive time: 61 ms | |||
PEP TEST-UNEXPECTED-FAIL | test_sanity.js | loadPage | unresponsive time: 275 ms | |||
PEP TEST-END | test_sanity.js | finished in: 8022 ms | |||
PEP TEST-START | test_sanity2.js | |||
PEP TEST-PASS | test_sanity2.js | |||
PEP TEST-END | test_sanity2.js | finished in: 1536 ms | |||
</pre> | |||
When a responsiveness measurement runs over 50ms a TEST-UNEXPECTED-FAIL message is output. The second column is the name of the test file, the third column is the name of the particular action that was being performed and the last column is the time in milliseconds that the event took to process. | |||
== Further Work == | == Further Work == | ||