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.
50 lines
879 B
Plaintext
50 lines
879 B
Plaintext
env GOPRIVATE=test/main
|
|
|
|
# Tiny mode
|
|
garble -tiny build
|
|
env GODEBUG='allocfreetrace=1,gcpacertrace=1,gctrace=1,scavtrace=1,scheddetail=1,schedtrace=10'
|
|
! exec ./main$exe
|
|
cmp stdout main.stdout
|
|
stderr '\? 0'
|
|
|
|
[short] stop # no need to verify this with -short
|
|
|
|
# Default mode
|
|
env GODEBUG=
|
|
garble -debugdir=.obf-src build
|
|
|
|
# Check for file name leak protection
|
|
grep '^\/\/line :1$' .obf-src/main/main.go
|
|
|
|
# Check for default line obfuscation
|
|
grep '^\/\/line \w\.go:[1-9][0-9]*$' .obf-src/main/main.go
|
|
! exec ./main$exe
|
|
cmp stdout main.stdout
|
|
stderr '\w\.go [1-9]'
|
|
|
|
-- go.mod --
|
|
module test/main
|
|
-- main.go --
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func main() {
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
fmt.Println(r)
|
|
panic("oh noes")
|
|
}
|
|
}()
|
|
|
|
_, file, line, _ := runtime.Caller(0)
|
|
println(file, line)
|
|
|
|
panic("ya like jazz?")
|
|
}
|
|
|
|
-- main.stdout --
|
|
ya like jazz? |