Retro68/gcc/libgo/go/flag/export_test.go

21 lines
607 B
Go
Raw Normal View History

// Copyright 2010 The Go Authors. All rights reserved.
2012-03-27 23:13:14 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package flag
import "os"
// Additional routines compiled into the package only during testing.
2018-12-28 15:30:48 +00:00
var DefaultUsage = Usage
2012-03-27 23:13:14 +00:00
// ResetForTesting clears all flag state and sets the usage function as directed.
// After calling ResetForTesting, parse errors in flag handling will not
// exit the program.
func ResetForTesting(usage func()) {
2014-09-21 17:33:12 +00:00
CommandLine = NewFlagSet(os.Args[0], ContinueOnError)
CommandLine.Usage = commandLineUsage
2012-03-27 23:13:14 +00:00
Usage = usage
}