访问基准测试结果

Accessing a benchmark's result

我看到 Go 中有一个结构 testing.BenchmarkResult 来访问基准测试的结果,但我发现很少有文档或示例可以帮助我使用它。

到目前为止,我只是像这样对我的函数进行基准测试:

func BenchmarkMyFunction(b *testing.B) {
   // call to myFunction
}

然后运行:

go test -bench=".*"

此处将结果打印到控制台,但我想将它们存储在单独的文件中。我如何使用 BenchmarkResult 类型来执行此操作?

例如:

package main

import (
    "fmt"
    "testing"
    "time"
)

func Add(a, b int) int {
    time.Sleep(10 * time.Microsecond) // Just to make the test take some time
    return a + b
}

func BenchAdd(b *testing.B) {
    for i := 0; i < b.N; i++ {
        _ = Add(1, 2)
    }
}

func main() {
    res := testing.Benchmark(BenchAdd)
    fmt.Printf("%s\n%#[1]v\n", res)
}

产生:

  120000         10000 ns/op
testing.BenchmarkResult{N:120000, T:1200000000, Bytes:0, MemAllocs:0x0, MemBytes:0x0, Extra:map[string]float64{}}

Playground.

您可以使用 ioutil.WriteFile 轻松地将这些结果写入文件。 Playground w/ WriteFile.