Text file src/cmd/go/testdata/script/test_status.txt

     1  env GO111MODULE=off
     2  
     3  ! go test x y
     4  stdout ^FAIL\s+x
     5  stdout ^ok\s+y
     6  stdout (?-m)FAIL\n$
     7  
     8  -- x/x_test.go --
     9  package x
    10  
    11  import "testing"
    12  
    13  func TestNothingJustFail(t *testing.T) {
    14      t.Fail()
    15  }
    16  
    17  -- y/y_test.go --
    18  package y
    19  

View as plain text