Home | History | Annotate | Download | only in runner

Lines Matching full:testoutput

3474 func statusPrinter(doneChan chan *testOutput, statusChan chan statusMsg, total int) {
3477 testOutput := newTestOutput()
3496 testOutput.addResult(msg.test.name, "FAIL")
3502 testOutput.addResult(msg.test.name, "PASS")
3514 doneChan <- testOutput
3557 doneChan := make(chan *testOutput)
3575 testOutput := <-doneChan
3580 if err := testOutput.writeTo(*jsonOutput); err != nil {
3585 if !testOutput.allPassed {