mirror of
https://github.com/golang/go
synced 2024-11-23 01:40:03 -07:00
path/filepath: better error reporting during TestWinSplitListTestsAreValid
Fixes #4930. R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7424043
This commit is contained in:
parent
e72d1a9575
commit
3889d8afe5
@ -70,10 +70,10 @@ func testWinSplitListTestIsValid(t *testing.T, ti int, tt SplitListTest,
|
||||
Env: []string{`Path=` + tt.list},
|
||||
Dir: tmp,
|
||||
}
|
||||
out, err := cmd.Output()
|
||||
out, err := cmd.CombinedOutput()
|
||||
switch {
|
||||
case err != nil:
|
||||
t.Errorf("%d,%d: execution error %v", ti, i, err)
|
||||
t.Errorf("%d,%d: execution error %v\n%q", ti, i, err, out)
|
||||
return
|
||||
case !reflect.DeepEqual(out, exp):
|
||||
t.Errorf("%d,%d: expected %#q, got %#q", ti, i, exp, out)
|
||||
|
Loading…
Reference in New Issue
Block a user