Home | History | Annotate | Download | only in util

Lines Matching full:testoutput

101 // testOutput is a representation of Chromium's JSON test result format. See
103 type testOutput struct {
118 func newTestOutput() *testOutput {
119 return &testOutput{
128 func (t *testOutput) addResult(name, result string) {
140 func (t *testOutput) writeTo(name string) error {
260 testOutput := newTestOutput()
270 testOutput.addResult(name, "CRASHED")
274 testOutput.addResult(name, "FAIL")
276 testOutput.addResult(name, "PASS")
281 if err := testOutput.writeTo(*jsonOutput); err != nil {