commit | 0210f859556ce358578b4c264928ae44b7fced16 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Fri Jan 27 16:39:10 2017 -0500 |
committer | Quentin Smith <quentin@golang.org> | Mon Jan 30 20:29:43 2017 +0000 |
tree | b3c829e0cb6c4b45a37a062970539d7ada68adb4 | |
parent | f01f51bad048993bf11515486ae0c98322ce82fd [diff] [blame] |
analysis/app: convert to new benchstat library Change-Id: I80e47f05530260b09dd92a04ddbf4799731ee99c Reviewed-on: https://go-review.googlesource.com/35944 Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: Quentin Smith <quentin@golang.org>
diff --git a/benchstat/table.go b/benchstat/table.go index e5249c1..780e422 100644 --- a/benchstat/table.go +++ b/benchstat/table.go
@@ -76,7 +76,7 @@ new := c.Metrics[k1] // If one is missing, omit row entirely. // TODO: Control this better. - if old == new || new == nil { + if old == nil || new == nil { continue } pval, testerr := deltaTest(old, new)