Skip to content

Commit

Permalink
testing: use time.Since instead of time.Now().Sub
Browse files Browse the repository at this point in the history
Change-Id: Ia0479f65a6ef033a65acf9ac8692777839a53b8c
Reviewed-on: https://go-review.googlesource.com/61990
Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
  • Loading branch information
mvdan committed Sep 6, 2017
1 parent 6367c19 commit 261a8d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/testing/benchmark.go
Expand Up @@ -86,7 +86,7 @@ func (b *B) StartTimer() {
// want to measure.
func (b *B) StopTimer() {
if b.timerOn {
b.duration += time.Now().Sub(b.start)
b.duration += time.Since(b.start)
runtime.ReadMemStats(&memStats)
b.netAllocs += memStats.Mallocs - b.startAllocs
b.netBytes += memStats.TotalAlloc - b.startBytes
Expand Down
2 changes: 1 addition & 1 deletion src/testing/example.go
Expand Up @@ -87,7 +87,7 @@ func runExample(eg InternalExample) (ok bool) {

// Clean up in a deferred call so we can recover if the example panics.
defer func() {
dstr := fmtDuration(time.Now().Sub(start))
dstr := fmtDuration(time.Since(start))

// Close pipe, restore stdout, get output.
w.Close()
Expand Down
2 changes: 1 addition & 1 deletion src/testing/testing.go
Expand Up @@ -701,7 +701,7 @@ func tRunner(t *T, fn func(t *T)) {
t.Errorf("race detected during execution of test")
}

t.duration += time.Now().Sub(t.start)
t.duration += time.Since(t.start)
// If the test panicked, print any test output before dying.
err := recover()
if !t.finished && err == nil {
Expand Down

0 comments on commit 261a8d9

Please sign in to comment.