garble build exec ./main cmp stdout main.stdout ! binsubstr main$exe '(devel)' [short] stop # no need to verify this with -short exec go build exec ./main cmp stdout main.stdout-orig binsubstr main$exe '(devel)' -- go.mod -- module test/main -- main.go -- package main import ( "fmt" "runtime/debug" ) func main() { fmt.Println(debug.ReadBuildInfo()) } -- main.stdout-orig -- &{test/main {test/main (devel) } []} true -- main.stdout -- false