From: Than McIntosh Date: Fri, 20 Mar 2020 13:03:39 +0000 (-0400) Subject: test: fix -test.v trace output for cgo/testshared X-Git-Tag: go1.15beta1~809 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=776a9d0958973bff6a66e61baa6a9a240ada4255;p=gostls13.git test: fix -test.v trace output for cgo/testshared Trace output showing how dummy GOROOT was being set up was incorrect (sense of the "cp -r" trace messages was inverted). This patch fixes the problem. Change-Id: Ib0ee649e305bfa1bc0c49e0d5ba2ea31e0a4f67e Reviewed-on: https://go-review.googlesource.com/c/go/+/224377 Run-TryBot: Than McIntosh TryBot-Result: Gobot Gobot Reviewed-by: Cherry Zhang --- diff --git a/misc/cgo/testshared/shared_test.go b/misc/cgo/testshared/shared_test.go index c7f15b8e89..acae1b2c21 100644 --- a/misc/cgo/testshared/shared_test.go +++ b/misc/cgo/testshared/shared_test.go @@ -221,7 +221,7 @@ func cloneGOROOTDeps(goroot string) error { for _, dir := range gorootDirs { if testing.Verbose() { - fmt.Fprintf(os.Stderr, "+ cp -r %s %s\n", filepath.Join(goroot, dir), filepath.Join(oldGOROOT, dir)) + fmt.Fprintf(os.Stderr, "+ cp -r %s %s\n", filepath.Join(oldGOROOT, dir), filepath.Join(goroot, dir)) } if err := overlayDir(filepath.Join(goroot, dir), filepath.Join(oldGOROOT, dir)); err != nil { return err