github.com/axw/llgo@v0.0.0-20160805011314-95b5fe4dca20/third_party/gofrontend/libgo/go/testing/testing.go (about)

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // Package testing provides support for automated testing of Go packages.
     6  // It is intended to be used in concert with the ``go test'' command, which automates
     7  // execution of any function of the form
     8  //     func TestXxx(*testing.T)
     9  // where Xxx can be any alphanumeric string (but the first letter must not be in
    10  // [a-z]) and serves to identify the test routine.
    11  //
    12  // Within these functions, use the Error, Fail or related methods to signal failure.
    13  //
    14  // To write a new test suite, create a file whose name ends _test.go that
    15  // contains the TestXxx functions as described here. Put the file in the same
    16  // package as the one being tested. The file will be excluded from regular
    17  // package builds but will be included when the ``go test'' command is run.
    18  // For more detail, run ``go help test'' and ``go help testflag''.
    19  //
    20  // Tests and benchmarks may be skipped if not applicable with a call to
    21  // the Skip method of *T and *B:
    22  //     func TestTimeConsuming(t *testing.T) {
    23  //         if testing.Short() {
    24  //             t.Skip("skipping test in short mode.")
    25  //         }
    26  //         ...
    27  //     }
    28  //
    29  // Benchmarks
    30  //
    31  // Functions of the form
    32  //     func BenchmarkXxx(*testing.B)
    33  // are considered benchmarks, and are executed by the "go test" command when
    34  // its -bench flag is provided. Benchmarks are run sequentially.
    35  //
    36  // For a description of the testing flags, see
    37  // https://golang.org/cmd/go/#hdr-Description_of_testing_flags.
    38  //
    39  // A sample benchmark function looks like this:
    40  //     func BenchmarkHello(b *testing.B) {
    41  //         for i := 0; i < b.N; i++ {
    42  //             fmt.Sprintf("hello")
    43  //         }
    44  //     }
    45  //
    46  // The benchmark function must run the target code b.N times.
    47  // During benchmark execution, b.N is adjusted until the benchmark function lasts
    48  // long enough to be timed reliably.  The output
    49  //     BenchmarkHello    10000000    282 ns/op
    50  // means that the loop ran 10000000 times at a speed of 282 ns per loop.
    51  //
    52  // If a benchmark needs some expensive setup before running, the timer
    53  // may be reset:
    54  //
    55  //     func BenchmarkBigLen(b *testing.B) {
    56  //         big := NewBig()
    57  //         b.ResetTimer()
    58  //         for i := 0; i < b.N; i++ {
    59  //             big.Len()
    60  //         }
    61  //     }
    62  //
    63  // If a benchmark needs to test performance in a parallel setting, it may use
    64  // the RunParallel helper function; such benchmarks are intended to be used with
    65  // the go test -cpu flag:
    66  //
    67  //     func BenchmarkTemplateParallel(b *testing.B) {
    68  //         templ := template.Must(template.New("test").Parse("Hello, {{.}}!"))
    69  //         b.RunParallel(func(pb *testing.PB) {
    70  //             var buf bytes.Buffer
    71  //             for pb.Next() {
    72  //                 buf.Reset()
    73  //                 templ.Execute(&buf, "World")
    74  //             }
    75  //         })
    76  //     }
    77  //
    78  // Examples
    79  //
    80  // The package also runs and verifies example code. Example functions may
    81  // include a concluding line comment that begins with "Output:" and is compared with
    82  // the standard output of the function when the tests are run. (The comparison
    83  // ignores leading and trailing space.) These are examples of an example:
    84  //
    85  //     func ExampleHello() {
    86  //             fmt.Println("hello")
    87  //             // Output: hello
    88  //     }
    89  //
    90  //     func ExampleSalutations() {
    91  //             fmt.Println("hello, and")
    92  //             fmt.Println("goodbye")
    93  //             // Output:
    94  //             // hello, and
    95  //             // goodbye
    96  //     }
    97  //
    98  // Example functions without output comments are compiled but not executed.
    99  //
   100  // The naming convention to declare examples for the package, a function F, a type T and
   101  // method M on type T are:
   102  //
   103  //     func Example() { ... }
   104  //     func ExampleF() { ... }
   105  //     func ExampleT() { ... }
   106  //     func ExampleT_M() { ... }
   107  //
   108  // Multiple example functions for a package/type/function/method may be provided by
   109  // appending a distinct suffix to the name. The suffix must start with a
   110  // lower-case letter.
   111  //
   112  //     func Example_suffix() { ... }
   113  //     func ExampleF_suffix() { ... }
   114  //     func ExampleT_suffix() { ... }
   115  //     func ExampleT_M_suffix() { ... }
   116  //
   117  // The entire test file is presented as the example when it contains a single
   118  // example function, at least one other function, type, variable, or constant
   119  // declaration, and no test or benchmark functions.
   120  //
   121  // Main
   122  //
   123  // It is sometimes necessary for a test program to do extra setup or teardown
   124  // before or after testing. It is also sometimes necessary for a test to control
   125  // which code runs on the main thread. To support these and other cases,
   126  // if a test file contains a function:
   127  //
   128  //	func TestMain(m *testing.M)
   129  //
   130  // then the generated test will call TestMain(m) instead of running the tests
   131  // directly. TestMain runs in the main goroutine and can do whatever setup
   132  // and teardown is necessary around a call to m.Run. It should then call
   133  // os.Exit with the result of m.Run. When TestMain is called, flag.Parse has
   134  // not been run. If TestMain depends on command-line flags, including those
   135  // of the testing package, it should call flag.Parse explicitly.
   136  //
   137  // A simple implementation of TestMain is:
   138  //
   139  //	func TestMain(m *testing.M) {
   140  //		flag.Parse()
   141  //		os.Exit(m.Run())
   142  //	}
   143  //
   144  package testing
   145  
   146  import (
   147  	"bytes"
   148  	"flag"
   149  	"fmt"
   150  	"os"
   151  	"runtime"
   152  	"runtime/pprof"
   153  	"strconv"
   154  	"strings"
   155  	"sync"
   156  	"time"
   157  )
   158  
   159  var (
   160  	// The short flag requests that tests run more quickly, but its functionality
   161  	// is provided by test writers themselves.  The testing package is just its
   162  	// home.  The all.bash installation script sets it to make installation more
   163  	// efficient, but by default the flag is off so a plain "go test" will do a
   164  	// full test of the package.
   165  	short = flag.Bool("test.short", false, "run smaller test suite to save time")
   166  
   167  	// The directory in which to create profile files and the like. When run from
   168  	// "go test", the binary always runs in the source directory for the package;
   169  	// this flag lets "go test" tell the binary to write the files in the directory where
   170  	// the "go test" command is run.
   171  	outputDir = flag.String("test.outputdir", "", "directory in which to write profiles")
   172  
   173  	// Report as tests are run; default is silent for success.
   174  	chatty           = flag.Bool("test.v", false, "verbose: print additional output")
   175  	count            = flag.Uint("test.count", 1, "run tests and benchmarks `n` times")
   176  	coverProfile     = flag.String("test.coverprofile", "", "write a coverage profile to the named file after execution")
   177  	match            = flag.String("test.run", "", "regular expression to select tests and examples to run")
   178  	memProfile       = flag.String("test.memprofile", "", "write a memory profile to the named file after execution")
   179  	memProfileRate   = flag.Int("test.memprofilerate", 0, "if >=0, sets runtime.MemProfileRate")
   180  	cpuProfile       = flag.String("test.cpuprofile", "", "write a cpu profile to the named file during execution")
   181  	blockProfile     = flag.String("test.blockprofile", "", "write a goroutine blocking profile to the named file after execution")
   182  	blockProfileRate = flag.Int("test.blockprofilerate", 1, "if >= 0, calls runtime.SetBlockProfileRate()")
   183  	traceFile        = flag.String("test.trace", "", "write an execution trace to the named file after execution")
   184  	timeout          = flag.Duration("test.timeout", 0, "if positive, sets an aggregate time limit for all tests")
   185  	cpuListStr       = flag.String("test.cpu", "", "comma-separated list of number of CPUs to use for each test")
   186  	parallel         = flag.Int("test.parallel", runtime.GOMAXPROCS(0), "maximum test parallelism")
   187  
   188  	haveExamples bool // are there examples?
   189  
   190  	cpuList []int
   191  )
   192  
   193  // common holds the elements common between T and B and
   194  // captures common methods such as Errorf.
   195  type common struct {
   196  	mu       sync.RWMutex // guards output and failed
   197  	output   []byte       // Output generated by test or benchmark.
   198  	failed   bool         // Test or benchmark has failed.
   199  	skipped  bool         // Test of benchmark has been skipped.
   200  	finished bool
   201  
   202  	start    time.Time // Time test or benchmark started
   203  	duration time.Duration
   204  	self     interface{}      // To be sent on signal channel when done.
   205  	signal   chan interface{} // Output for serial tests.
   206  }
   207  
   208  // Short reports whether the -test.short flag is set.
   209  func Short() bool {
   210  	return *short
   211  }
   212  
   213  // Verbose reports whether the -test.v flag is set.
   214  func Verbose() bool {
   215  	return *chatty
   216  }
   217  
   218  // decorate prefixes the string with the file and line of the call site
   219  // and inserts the final newline if needed and indentation tabs for formatting.
   220  func decorate(s string) string {
   221  	_, file, line, ok := runtime.Caller(3) // decorate + log + public function.
   222  	if ok {
   223  		// Truncate file name at last file name separator.
   224  		if index := strings.LastIndex(file, "/"); index >= 0 {
   225  			file = file[index+1:]
   226  		} else if index = strings.LastIndex(file, "\\"); index >= 0 {
   227  			file = file[index+1:]
   228  		}
   229  	} else {
   230  		file = "???"
   231  		line = 1
   232  	}
   233  	buf := new(bytes.Buffer)
   234  	// Every line is indented at least one tab.
   235  	buf.WriteByte('\t')
   236  	fmt.Fprintf(buf, "%s:%d: ", file, line)
   237  	lines := strings.Split(s, "\n")
   238  	if l := len(lines); l > 1 && lines[l-1] == "" {
   239  		lines = lines[:l-1]
   240  	}
   241  	for i, line := range lines {
   242  		if i > 0 {
   243  			// Second and subsequent lines are indented an extra tab.
   244  			buf.WriteString("\n\t\t")
   245  		}
   246  		buf.WriteString(line)
   247  	}
   248  	buf.WriteByte('\n')
   249  	return buf.String()
   250  }
   251  
   252  // fmtDuration returns a string representing d in the form "87.00s".
   253  func fmtDuration(d time.Duration) string {
   254  	return fmt.Sprintf("%.2fs", d.Seconds())
   255  }
   256  
   257  // TB is the interface common to T and B.
   258  type TB interface {
   259  	Error(args ...interface{})
   260  	Errorf(format string, args ...interface{})
   261  	Fail()
   262  	FailNow()
   263  	Failed() bool
   264  	Fatal(args ...interface{})
   265  	Fatalf(format string, args ...interface{})
   266  	Log(args ...interface{})
   267  	Logf(format string, args ...interface{})
   268  	Skip(args ...interface{})
   269  	SkipNow()
   270  	Skipf(format string, args ...interface{})
   271  	Skipped() bool
   272  
   273  	// A private method to prevent users implementing the
   274  	// interface and so future additions to it will not
   275  	// violate Go 1 compatibility.
   276  	private()
   277  }
   278  
   279  var _ TB = (*T)(nil)
   280  var _ TB = (*B)(nil)
   281  
   282  // T is a type passed to Test functions to manage test state and support formatted test logs.
   283  // Logs are accumulated during execution and dumped to standard error when done.
   284  type T struct {
   285  	common
   286  	name          string    // Name of test.
   287  	startParallel chan bool // Parallel tests will wait on this.
   288  }
   289  
   290  func (c *common) private() {}
   291  
   292  // Fail marks the function as having failed but continues execution.
   293  func (c *common) Fail() {
   294  	c.mu.Lock()
   295  	defer c.mu.Unlock()
   296  	c.failed = true
   297  }
   298  
   299  // Failed reports whether the function has failed.
   300  func (c *common) Failed() bool {
   301  	c.mu.RLock()
   302  	defer c.mu.RUnlock()
   303  	return c.failed
   304  }
   305  
   306  // FailNow marks the function as having failed and stops its execution.
   307  // Execution will continue at the next test or benchmark.
   308  // FailNow must be called from the goroutine running the
   309  // test or benchmark function, not from other goroutines
   310  // created during the test. Calling FailNow does not stop
   311  // those other goroutines.
   312  func (c *common) FailNow() {
   313  	c.Fail()
   314  
   315  	// Calling runtime.Goexit will exit the goroutine, which
   316  	// will run the deferred functions in this goroutine,
   317  	// which will eventually run the deferred lines in tRunner,
   318  	// which will signal to the test loop that this test is done.
   319  	//
   320  	// A previous version of this code said:
   321  	//
   322  	//	c.duration = ...
   323  	//	c.signal <- c.self
   324  	//	runtime.Goexit()
   325  	//
   326  	// This previous version duplicated code (those lines are in
   327  	// tRunner no matter what), but worse the goroutine teardown
   328  	// implicit in runtime.Goexit was not guaranteed to complete
   329  	// before the test exited.  If a test deferred an important cleanup
   330  	// function (like removing temporary files), there was no guarantee
   331  	// it would run on a test failure.  Because we send on c.signal during
   332  	// a top-of-stack deferred function now, we know that the send
   333  	// only happens after any other stacked defers have completed.
   334  	c.finished = true
   335  	runtime.Goexit()
   336  }
   337  
   338  // log generates the output. It's always at the same stack depth.
   339  func (c *common) log(s string) {
   340  	c.mu.Lock()
   341  	defer c.mu.Unlock()
   342  	c.output = append(c.output, decorate(s)...)
   343  }
   344  
   345  // Log formats its arguments using default formatting, analogous to Println,
   346  // and records the text in the error log. For tests, the text will be printed only if
   347  // the test fails or the -test.v flag is set. For benchmarks, the text is always
   348  // printed to avoid having performance depend on the value of the -test.v flag.
   349  func (c *common) Log(args ...interface{}) { c.log(fmt.Sprintln(args...)) }
   350  
   351  // Logf formats its arguments according to the format, analogous to Printf,
   352  // and records the text in the error log. For tests, the text will be printed only if
   353  // the test fails or the -test.v flag is set. For benchmarks, the text is always
   354  // printed to avoid having performance depend on the value of the -test.v flag.
   355  func (c *common) Logf(format string, args ...interface{}) { c.log(fmt.Sprintf(format, args...)) }
   356  
   357  // Error is equivalent to Log followed by Fail.
   358  func (c *common) Error(args ...interface{}) {
   359  	c.log(fmt.Sprintln(args...))
   360  	c.Fail()
   361  }
   362  
   363  // Errorf is equivalent to Logf followed by Fail.
   364  func (c *common) Errorf(format string, args ...interface{}) {
   365  	c.log(fmt.Sprintf(format, args...))
   366  	c.Fail()
   367  }
   368  
   369  // Fatal is equivalent to Log followed by FailNow.
   370  func (c *common) Fatal(args ...interface{}) {
   371  	c.log(fmt.Sprintln(args...))
   372  	c.FailNow()
   373  }
   374  
   375  // Fatalf is equivalent to Logf followed by FailNow.
   376  func (c *common) Fatalf(format string, args ...interface{}) {
   377  	c.log(fmt.Sprintf(format, args...))
   378  	c.FailNow()
   379  }
   380  
   381  // Skip is equivalent to Log followed by SkipNow.
   382  func (c *common) Skip(args ...interface{}) {
   383  	c.log(fmt.Sprintln(args...))
   384  	c.SkipNow()
   385  }
   386  
   387  // Skipf is equivalent to Logf followed by SkipNow.
   388  func (c *common) Skipf(format string, args ...interface{}) {
   389  	c.log(fmt.Sprintf(format, args...))
   390  	c.SkipNow()
   391  }
   392  
   393  // SkipNow marks the test as having been skipped and stops its execution.
   394  // Execution will continue at the next test or benchmark. See also FailNow.
   395  // SkipNow must be called from the goroutine running the test, not from
   396  // other goroutines created during the test. Calling SkipNow does not stop
   397  // those other goroutines.
   398  func (c *common) SkipNow() {
   399  	c.skip()
   400  	c.finished = true
   401  	runtime.Goexit()
   402  }
   403  
   404  func (c *common) skip() {
   405  	c.mu.Lock()
   406  	defer c.mu.Unlock()
   407  	c.skipped = true
   408  }
   409  
   410  // Skipped reports whether the test was skipped.
   411  func (c *common) Skipped() bool {
   412  	c.mu.RLock()
   413  	defer c.mu.RUnlock()
   414  	return c.skipped
   415  }
   416  
   417  // Parallel signals that this test is to be run in parallel with (and only with)
   418  // other parallel tests.
   419  func (t *T) Parallel() {
   420  	t.signal <- (*T)(nil) // Release main testing loop
   421  	<-t.startParallel     // Wait for serial tests to finish
   422  	// Assuming Parallel is the first thing a test does, which is reasonable,
   423  	// reinitialize the test's start time because it's actually starting now.
   424  	t.start = time.Now()
   425  }
   426  
   427  // An internal type but exported because it is cross-package; part of the implementation
   428  // of the "go test" command.
   429  type InternalTest struct {
   430  	Name string
   431  	F    func(*T)
   432  }
   433  
   434  func tRunner(t *T, test *InternalTest) {
   435  	// When this goroutine is done, either because test.F(t)
   436  	// returned normally or because a test failure triggered
   437  	// a call to runtime.Goexit, record the duration and send
   438  	// a signal saying that the test is done.
   439  	defer func() {
   440  		t.duration = time.Now().Sub(t.start)
   441  		// If the test panicked, print any test output before dying.
   442  		err := recover()
   443  		if !t.finished && err == nil {
   444  			err = fmt.Errorf("test executed panic(nil) or runtime.Goexit")
   445  		}
   446  		if err != nil {
   447  			t.Fail()
   448  			t.report()
   449  			panic(err)
   450  		}
   451  		t.signal <- t
   452  	}()
   453  
   454  	t.start = time.Now()
   455  	test.F(t)
   456  	t.finished = true
   457  }
   458  
   459  // An internal function but exported because it is cross-package; part of the implementation
   460  // of the "go test" command.
   461  func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
   462  	os.Exit(MainStart(matchString, tests, benchmarks, examples).Run())
   463  }
   464  
   465  // M is a type passed to a TestMain function to run the actual tests.
   466  type M struct {
   467  	matchString func(pat, str string) (bool, error)
   468  	tests       []InternalTest
   469  	benchmarks  []InternalBenchmark
   470  	examples    []InternalExample
   471  }
   472  
   473  // MainStart is meant for use by tests generated by 'go test'.
   474  // It is not meant to be called directly and is not subject to the Go 1 compatibility document.
   475  // It may change signature from release to release.
   476  func MainStart(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) *M {
   477  	return &M{
   478  		matchString: matchString,
   479  		tests:       tests,
   480  		benchmarks:  benchmarks,
   481  		examples:    examples,
   482  	}
   483  }
   484  
   485  // Run runs the tests. It returns an exit code to pass to os.Exit.
   486  func (m *M) Run() int {
   487  	flag.Parse()
   488  	parseCpuList()
   489  
   490  	before()
   491  	startAlarm()
   492  	haveExamples = len(m.examples) > 0
   493  	testOk := RunTests(m.matchString, m.tests)
   494  	exampleOk := RunExamples(m.matchString, m.examples)
   495  	stopAlarm()
   496  	if !testOk || !exampleOk {
   497  		fmt.Println("FAIL")
   498  		after()
   499  		return 1
   500  	}
   501  	fmt.Println("PASS")
   502  	RunBenchmarks(m.matchString, m.benchmarks)
   503  	after()
   504  	return 0
   505  }
   506  
   507  func (t *T) report() {
   508  	dstr := fmtDuration(t.duration)
   509  	format := "--- %s: %s (%s)\n%s"
   510  	if t.Failed() {
   511  		fmt.Printf(format, "FAIL", t.name, dstr, t.output)
   512  	} else if *chatty {
   513  		if t.Skipped() {
   514  			fmt.Printf(format, "SKIP", t.name, dstr, t.output)
   515  		} else {
   516  			fmt.Printf(format, "PASS", t.name, dstr, t.output)
   517  		}
   518  	}
   519  }
   520  
   521  func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool) {
   522  	ok = true
   523  	if len(tests) == 0 && !haveExamples {
   524  		fmt.Fprintln(os.Stderr, "testing: warning: no tests to run")
   525  		return
   526  	}
   527  	for _, procs := range cpuList {
   528  		runtime.GOMAXPROCS(procs)
   529  		// We build a new channel tree for each run of the loop.
   530  		// collector merges in one channel all the upstream signals from parallel tests.
   531  		// If all tests pump to the same channel, a bug can occur where a test
   532  		// kicks off a goroutine that Fails, yet the test still delivers a completion signal,
   533  		// which skews the counting.
   534  		var collector = make(chan interface{})
   535  
   536  		numParallel := 0
   537  		startParallel := make(chan bool)
   538  
   539  		for i := 0; i < len(tests); i++ {
   540  			matched, err := matchString(*match, tests[i].Name)
   541  			if err != nil {
   542  				fmt.Fprintf(os.Stderr, "testing: invalid regexp for -test.run: %s\n", err)
   543  				os.Exit(1)
   544  			}
   545  			if !matched {
   546  				continue
   547  			}
   548  			testName := tests[i].Name
   549  			t := &T{
   550  				common: common{
   551  					signal: make(chan interface{}),
   552  				},
   553  				name:          testName,
   554  				startParallel: startParallel,
   555  			}
   556  			t.self = t
   557  			if *chatty {
   558  				fmt.Printf("=== RUN   %s\n", t.name)
   559  			}
   560  			go tRunner(t, &tests[i])
   561  			out := (<-t.signal).(*T)
   562  			if out == nil { // Parallel run.
   563  				go func() {
   564  					collector <- <-t.signal
   565  				}()
   566  				numParallel++
   567  				continue
   568  			}
   569  			t.report()
   570  			ok = ok && !out.Failed()
   571  		}
   572  
   573  		running := 0
   574  		for numParallel+running > 0 {
   575  			if running < *parallel && numParallel > 0 {
   576  				startParallel <- true
   577  				running++
   578  				numParallel--
   579  				continue
   580  			}
   581  			t := (<-collector).(*T)
   582  			t.report()
   583  			ok = ok && !t.Failed()
   584  			running--
   585  		}
   586  	}
   587  	return
   588  }
   589  
   590  // before runs before all testing.
   591  func before() {
   592  	if *memProfileRate > 0 {
   593  		runtime.MemProfileRate = *memProfileRate
   594  	}
   595  	if *cpuProfile != "" {
   596  		f, err := os.Create(toOutputDir(*cpuProfile))
   597  		if err != nil {
   598  			fmt.Fprintf(os.Stderr, "testing: %s", err)
   599  			return
   600  		}
   601  		if err := pprof.StartCPUProfile(f); err != nil {
   602  			fmt.Fprintf(os.Stderr, "testing: can't start cpu profile: %s", err)
   603  			f.Close()
   604  			return
   605  		}
   606  		// Could save f so after can call f.Close; not worth the effort.
   607  	}
   608  	if *traceFile != "" {
   609  		f, err := os.Create(toOutputDir(*traceFile))
   610  		if err != nil {
   611  			fmt.Fprintf(os.Stderr, "testing: %s", err)
   612  			return
   613  		}
   614  		/*
   615  			if err := trace.Start(f); err != nil {
   616  				fmt.Fprintf(os.Stderr, "testing: can't start tracing: %s", err)
   617  				f.Close()
   618  				return
   619  			}
   620  		*/
   621  		_ = f
   622  		// Could save f so after can call f.Close; not worth the effort.
   623  	}
   624  	if *blockProfile != "" && *blockProfileRate >= 0 {
   625  		runtime.SetBlockProfileRate(*blockProfileRate)
   626  	}
   627  	if *coverProfile != "" && cover.Mode == "" {
   628  		fmt.Fprintf(os.Stderr, "testing: cannot use -test.coverprofile because test binary was not built with coverage enabled\n")
   629  		os.Exit(2)
   630  	}
   631  }
   632  
   633  // after runs after all testing.
   634  func after() {
   635  	if *cpuProfile != "" {
   636  		pprof.StopCPUProfile() // flushes profile to disk
   637  	}
   638  	if *traceFile != "" {
   639  		/*
   640  			trace.Stop() // flushes trace to disk
   641  		*/
   642  	}
   643  	if *memProfile != "" {
   644  		f, err := os.Create(toOutputDir(*memProfile))
   645  		if err != nil {
   646  			fmt.Fprintf(os.Stderr, "testing: %s\n", err)
   647  			os.Exit(2)
   648  		}
   649  		runtime.GC() // materialize all statistics
   650  		if err = pprof.WriteHeapProfile(f); err != nil {
   651  			fmt.Fprintf(os.Stderr, "testing: can't write %s: %s\n", *memProfile, err)
   652  			os.Exit(2)
   653  		}
   654  		f.Close()
   655  	}
   656  	if *blockProfile != "" && *blockProfileRate >= 0 {
   657  		f, err := os.Create(toOutputDir(*blockProfile))
   658  		if err != nil {
   659  			fmt.Fprintf(os.Stderr, "testing: %s\n", err)
   660  			os.Exit(2)
   661  		}
   662  		if err = pprof.Lookup("block").WriteTo(f, 0); err != nil {
   663  			fmt.Fprintf(os.Stderr, "testing: can't write %s: %s\n", *blockProfile, err)
   664  			os.Exit(2)
   665  		}
   666  		f.Close()
   667  	}
   668  	if cover.Mode != "" {
   669  		coverReport()
   670  	}
   671  }
   672  
   673  // toOutputDir returns the file name relocated, if required, to outputDir.
   674  // Simple implementation to avoid pulling in path/filepath.
   675  func toOutputDir(path string) string {
   676  	if *outputDir == "" || path == "" {
   677  		return path
   678  	}
   679  	if runtime.GOOS == "windows" {
   680  		// On Windows, it's clumsy, but we can be almost always correct
   681  		// by just looking for a drive letter and a colon.
   682  		// Absolute paths always have a drive letter (ignoring UNC).
   683  		// Problem: if path == "C:A" and outputdir == "C:\Go" it's unclear
   684  		// what to do, but even then path/filepath doesn't help.
   685  		// TODO: Worth doing better? Probably not, because we're here only
   686  		// under the management of go test.
   687  		if len(path) >= 2 {
   688  			letter, colon := path[0], path[1]
   689  			if ('a' <= letter && letter <= 'z' || 'A' <= letter && letter <= 'Z') && colon == ':' {
   690  				// If path starts with a drive letter we're stuck with it regardless.
   691  				return path
   692  			}
   693  		}
   694  	}
   695  	if os.IsPathSeparator(path[0]) {
   696  		return path
   697  	}
   698  	return fmt.Sprintf("%s%c%s", *outputDir, os.PathSeparator, path)
   699  }
   700  
   701  var timer *time.Timer
   702  
   703  // startAlarm starts an alarm if requested.
   704  func startAlarm() {
   705  	if *timeout > 0 {
   706  		timer = time.AfterFunc(*timeout, func() {
   707  			panic(fmt.Sprintf("test timed out after %v", *timeout))
   708  		})
   709  	}
   710  }
   711  
   712  // stopAlarm turns off the alarm.
   713  func stopAlarm() {
   714  	if *timeout > 0 {
   715  		timer.Stop()
   716  	}
   717  }
   718  
   719  func parseCpuList() {
   720  	for _, val := range strings.Split(*cpuListStr, ",") {
   721  		val = strings.TrimSpace(val)
   722  		if val == "" {
   723  			continue
   724  		}
   725  		cpu, err := strconv.Atoi(val)
   726  		if err != nil || cpu <= 0 {
   727  			fmt.Fprintf(os.Stderr, "testing: invalid value %q for -test.cpu\n", val)
   728  			os.Exit(1)
   729  		}
   730  		for i := uint(0); i < *count; i++ {
   731  			cpuList = append(cpuList, cpu)
   732  		}
   733  	}
   734  	if cpuList == nil {
   735  		for i := uint(0); i < *count; i++ {
   736  			cpuList = append(cpuList, runtime.GOMAXPROCS(-1))
   737  		}
   738  	}
   739  }