testdata: set GOPRIVATE in all but two tests

basic.txt just builds main.go without a module. Similarly, we leave
imports.txt without a GOPRIVATE, to test the 'go list -m' fallback.

For all other tests, explicitly set GOPRIVATE, to avoid two exec calls -
both 'go env GOPRIVATE' as well as 'go list -m'. Each of those calls
takes in the order of 10ms, so saving ~26 exec calls should easily add
to 200-300ms saved from 'go test -short'.
pull/104/head
Daniel Martí 5 years ago
parent a0c84bdfd4
commit 05c56ca0a4

@ -1,3 +1,5 @@
env GOPRIVATE=test/main
garble build
exec ./main
cmp stderr main.stderr

@ -2,7 +2,7 @@
! exec go build -a -toolexec=garble main.go
stderr 'should be used alongside -trimpath'
# Check that the simplest use of garble works.
# Check that the simplest use of garble works. Note the lack of a module or GOPRIVATE.
garble build main.go
exec ./main
cmp stderr main.stderr

@ -1,3 +1,5 @@
env GOPRIVATE=test/main
garble build
exec ./main
cmp stderr main.stderr

@ -1,14 +1,16 @@
env GOPRIVATE=test/main
garble -debugdir ./test1 build
exists 'test1/test/imported/imported.go' 'test1/main/main.go'
! grep ImportedFunc $WORK/test1/test/imported/imported.go
exists 'test1/test/main/imported/imported.go' 'test1/main/main.go'
! grep ImportedFunc $WORK/test1/test/main/imported/imported.go
! grep ImportedFunc $WORK/test1/main/main.go
-- go.mod --
module test
module test/main
-- main.go --
package main
import "test/imported"
import "test/main/imported"
func main() {
imported.ImportedFunc()

@ -1,3 +1,5 @@
env GOPRIVATE=test/main
garble build
exec ./main
cmp stderr main.stderr

@ -1,3 +1,6 @@
# Note that this is the only test with a module where we rely on the detection
# of GOPRIVATE.
garble build -tags buildtag
exec ./main
cmp stdout main.stdout

@ -1,3 +1,6 @@
# Note the proper domain, since the dot adds an edge case.
env GOPRIVATE=domain.test/main
garble build -ldflags='-X=main.unexportedVersion=v1.0.0 -X=domain.test/main/imported.ExportedVar=replaced'
exec ./main
cmp stderr main.stderr

@ -1,3 +1,5 @@
env GOPRIVATE=test/main
# Generate and write random literals into a separate file
generate-literals extraLiterals.go 500 printExtraLiterals

@ -1,3 +1,5 @@
env GOPRIVATE=test/main
garble build
exec ./main
cmp stderr main.stderr

@ -1,3 +1,5 @@
env GOPRIVATE=test/main
garble build
! exec ./main
cmp stderr main.stderr

@ -1,5 +1,7 @@
[windows] skip 'Go plugins are not supported on Windows'
env GOPRIVATE=test/main
garble build -buildmode=plugin ./plugin
binsubstr plugin.so 'PublicVar' 'PublicFunc'
! binsubstr plugin.so 'privateFunc'

@ -1,3 +1,5 @@
env GOPRIVATE=test/main
# Check the binary with a given base64 encoded seed
garble -literals -seed=OQg9kACEECQ= build
exec ./main$exe

@ -1,9 +1,4 @@
go build
exec ./main$exe
cmp stderr main.stderr
binsubstr main$exe 'globalVar' # 'globalType' only matches on go < 1.15
! binsubstr main$exe 'localName' 'globalConst'
env GOPRIVATE=test/main
garble -debugdir=debug build
exec ./main$exe
@ -13,6 +8,16 @@ cmp stderr main.stderr
binsubstr debug/main/scopes.go 'localName' 'globalConst'
[short] stop # no need to verify this with -short
go build
exec ./main$exe
cmp stderr main.stderr
binsubstr main$exe 'globalVar' # 'globalType' only matches on go < 1.15
! binsubstr main$exe 'localName' 'globalConst'
-- go.mod --
module test/main
-- main.go --

@ -1,3 +1,6 @@
# Note that we need bar_test too.
env GOPRIVATE=test/bar,test/bar_test
# build the test binary
garble test -c
binsubstr bar.test$exe 'TestFoo' 'TestSeparateFoo'

@ -1,3 +1,5 @@
env GOPRIVATE=test/main
env TINY_PATTERN='^\/\/line :1$'
env DEFAULT_PATTERN='^\/\/line \w\.go:[1-9][0-9]*$'
env DEFAULT_STACK_PATTERN='^\t\w\.go:[1-9][0-9]*(\s\+0x[0-9a-f]+)?'
@ -32,10 +34,10 @@ grep $DEFAULT_PATTERN .obf-src/main/main.go
stderr $DEFAULT_STACK_PATTERN
-- go.mod --
module main
module test/main
-- main.go --
package main
func main() {
panic("Test")
}
}

Loading…
Cancel
Save