You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
917 B
Plaintext
59 lines
917 B
Plaintext
[go1.16] skip 'TODO(mvdan): fix for Go 1.16'
|
|
|
|
env GOPRIVATE=test/main
|
|
|
|
garble build
|
|
exec ./main
|
|
cmp stderr main.stderr
|
|
binsubstr main$exe 'privateAdd' 'PublicAdd'
|
|
|
|
[short] stop # no need to verify this with -short
|
|
|
|
garble -tiny build
|
|
exec ./main
|
|
cmp stderr main.stderr
|
|
binsubstr main$exe 'privateAdd' 'PublicAdd'
|
|
|
|
go build
|
|
exec ./main
|
|
cmp stderr main.stderr
|
|
|
|
-- go.mod --
|
|
module test/main
|
|
|
|
go 1.15
|
|
-- main.go --
|
|
package main
|
|
|
|
import (
|
|
"test/main/imported"
|
|
)
|
|
|
|
func privateAdd(x, y int64) int64
|
|
|
|
func main() {
|
|
println(privateAdd(1, 2))
|
|
println(imported.PublicAdd(3, 4))
|
|
}
|
|
-- main.s --
|
|
TEXT ·privateAdd(SB),$0-24
|
|
MOVQ x+0(FP), BX
|
|
MOVQ y+8(FP), BP
|
|
ADDQ BP, BX
|
|
MOVQ BX, ret+16(FP)
|
|
RET
|
|
-- imported/imported.go --
|
|
package imported
|
|
|
|
func PublicAdd(x, y int64) int64
|
|
-- imported/imported.s --
|
|
TEXT ·PublicAdd(SB),$0-24
|
|
MOVQ x+0(FP), BX
|
|
MOVQ y+8(FP), BP
|
|
ADDQ BP, BX
|
|
MOVQ BX, ret+16(FP)
|
|
RET
|
|
-- main.stderr --
|
|
3
|
|
7
|