use the latest testscript to drop func() int

And don't fail when requesting help, which is what Go's flag package
has been moving towards.
pull/904/head
Daniel Martí 3 months ago committed by Paul Scheduikat
parent 7678613fd0
commit 76905ba3bc

@ -6,7 +6,7 @@ require (
github.com/bluekeyes/go-gitdiff v0.8.0 github.com/bluekeyes/go-gitdiff v0.8.0
github.com/go-quicktest/qt v1.101.0 github.com/go-quicktest/qt v1.101.0
github.com/google/go-cmp v0.6.0 github.com/google/go-cmp v0.6.0
github.com/rogpeppe/go-internal v1.13.1 github.com/rogpeppe/go-internal v1.13.2-0.20241226121412-a5dc8ff20d0a
golang.org/x/mod v0.22.0 golang.org/x/mod v0.22.0
golang.org/x/tools v0.27.0 golang.org/x/tools v0.27.0
) )

@ -11,8 +11,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII= github.com/rogpeppe/go-internal v1.13.2-0.20241226121412-a5dc8ff20d0a h1:w3tdWGKbLGBPtR/8/oO74W6hmz0qE5q0z9aqSAewaaM=
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= github.com/rogpeppe/go-internal v1.13.2-0.20241226121412-a5dc8ff20d0a/go.mod h1:S8kfXMp+yh77OxPD4fdM6YUknrZpQxLhvxzS4gDHENY=
golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4= golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4=
golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY= golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
golang.org/x/sync v0.9.0 h1:fEo0HyrW1GIgZdpbhCRO0PkJajUS5H9IFUztCgEo2jQ= golang.org/x/sync v0.9.0 h1:fEo0HyrW1GIgZdpbhCRO0PkJajUS5H9IFUztCgEo2jQ=

@ -51,7 +51,7 @@ import (
"mvdan.cc/garble/internal/literals" "mvdan.cc/garble/internal/literals"
) )
var flagSet = flag.NewFlagSet("garble", flag.ContinueOnError) var flagSet = flag.NewFlagSet("garble", flag.ExitOnError)
var ( var (
flagLiterals bool flagLiterals bool
@ -146,8 +146,6 @@ For more information, see https://github.com/burrowers/garble.
`[1:]) `[1:])
} }
func main() { os.Exit(main1()) }
var ( var (
// Presumably OK to share fset across packages. // Presumably OK to share fset across packages.
fset = token.NewFileSet() fset = token.NewFileSet()
@ -220,7 +218,7 @@ func debugSince(start time.Time) time.Duration {
return time.Since(start).Truncate(10 * time.Microsecond) return time.Since(start).Truncate(10 * time.Microsecond)
} }
func main1() int { func main() {
if dir := os.Getenv("GARBLE_WRITE_CPUPROFILES"); dir != "" { if dir := os.Getenv("GARBLE_WRITE_CPUPROFILES"); dir != "" {
f, err := os.CreateTemp(dir, "garble-cpu-*.pprof") f, err := os.CreateTemp(dir, "garble-cpu-*.pprof")
if err != nil { if err != nil {
@ -256,9 +254,7 @@ func main1() int {
fmt.Fprintf(os.Stderr, "garble allocs: %d\n", memStats.Mallocs) fmt.Fprintf(os.Stderr, "garble allocs: %d\n", memStats.Mallocs)
} }
}() }()
if err := flagSet.Parse(os.Args[1:]); err != nil { flagSet.Parse(os.Args[1:])
return 2
}
log.SetPrefix("[garble] ") log.SetPrefix("[garble] ")
log.SetFlags(0) // no timestamps, as they aren't very useful log.SetFlags(0) // no timestamps, as they aren't very useful
if flagDebug { if flagDebug {
@ -270,7 +266,7 @@ func main1() int {
args := flagSet.Args() args := flagSet.Args()
if len(args) < 1 { if len(args) < 1 {
usage() usage()
return 2 os.Exit(2)
} }
// If a random seed was used, the user won't be able to reproduce the // If a random seed was used, the user won't be able to reproduce the
@ -283,12 +279,11 @@ func main1() int {
} }
if err := mainErr(args); err != nil { if err := mainErr(args); err != nil {
if code, ok := err.(errJustExit); ok { if code, ok := err.(errJustExit); ok {
return int(code) os.Exit(int(code))
} }
fmt.Fprintln(os.Stderr, err) fmt.Fprintln(os.Stderr, err)
return 1 os.Exit(1)
} }
return 0
} }
type errJustExit int type errJustExit int
@ -358,13 +353,13 @@ func mainErr(args []string) error {
case "help": case "help":
if hasHelpFlag(args) || len(args) > 1 { if hasHelpFlag(args) || len(args) > 1 {
fmt.Fprintf(os.Stderr, "usage: garble help [command]\n") fmt.Fprintf(os.Stderr, "usage: garble help [command]\n")
return errJustExit(2) return errJustExit(0)
} }
if len(args) == 1 { if len(args) == 1 {
return mainErr([]string{args[0], "-h"}) return mainErr([]string{args[0], "-h"})
} }
usage() usage()
return errJustExit(2) return errJustExit(0)
case "version": case "version":
if hasHelpFlag(args) || len(args) > 0 { if hasHelpFlag(args) || len(args) > 0 {
fmt.Fprintf(os.Stderr, "usage: garble version\n") fmt.Fprintf(os.Stderr, "usage: garble version\n")

@ -41,11 +41,11 @@ func TestMain(m *testing.M) {
os.Setenv("GORACE", "atexit_sleep_ms=10") os.Setenv("GORACE", "atexit_sleep_ms=10")
} }
if os.Getenv("RUN_GARBLE_MAIN") == "true" { if os.Getenv("RUN_GARBLE_MAIN") == "true" {
os.Exit(main1()) main()
} }
os.Exit(testscript.RunMain(garbleMain{m}, map[string]func() int{ testscript.Main(garbleMain{m}, map[string]func(){
"garble": main1, "garble": main,
})) })
} }
type garbleMain struct { type garbleMain struct {

@ -4,22 +4,22 @@ stderr 'garble \[garble flags\] command'
! stderr 'usage: go build' ! stderr 'usage: go build'
! stdout . ! stdout .
! exec garble -h exec garble -h
stderr 'Garble obfuscates Go code' stderr 'Garble obfuscates Go code'
stderr 'garble \[garble flags\] command' stderr 'garble \[garble flags\] command'
! stdout . ! stdout .
! exec garble help exec garble help
stderr 'Garble obfuscates Go code' stderr 'Garble obfuscates Go code'
stderr 'garble \[garble flags\] command' stderr 'garble \[garble flags\] command'
! stdout . ! stdout .
! exec garble help foo bar exec garble help foo bar
stderr 'usage: garble help' stderr 'usage: garble help'
! stderr 'Garble obfuscates Go code' ! stderr 'Garble obfuscates Go code'
! stdout . ! stdout .
! exec garble help -h exec garble help -h
stderr 'usage: garble help' stderr 'usage: garble help'
! stdout . ! stdout .

Loading…
Cancel
Save