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.
30 lines
462 B
Plaintext
30 lines
462 B
Plaintext
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) <nil>} []} true
|
|
-- main.stdout --
|
|
<nil> false
|