Home | History | Annotate | Download | only in util

Lines Matching full:testoutput

44 // testOutput is a representation of Chromium's JSON test result format. See
46 type testOutput struct {
61 func newTestOutput() *testOutput {
62 return &testOutput{
71 func (t *testOutput) addResult(name, result string) {
83 func (t *testOutput) writeTo(name string) error {
238 testOutput := newTestOutput()
248 testOutput.addResult(name, "CRASHED")
252 testOutput.addResult(name, "FAIL")
254 testOutput.addResult(name, "PASS")
259 if err := testOutput.writeTo(*jsonOutput); err != nil {