diff --git a/testdata/022-bench.txt b/testdata/022-bench.txt index 06847e8..1daf1f5 100644 --- a/testdata/022-bench.txt +++ b/testdata/022-bench.txt @@ -1,7 +1,18 @@ -goos: darwin +=== RUN TestOne + bench_test.go:9: test log +--- PASS: TestOne (0.00s) +goos: linux goarch: amd64 -pkg: code.internal/state -BenchmarkParse-8 2000000 604 ns/op -BenchmarkReadingList-8 1000000 1425 ns/op +pkg: package/bench +BenchmarkOne + bench_test.go:13: benchmark log (1) + bench_test.go:13: benchmark log (100) + bench_test.go:13: benchmark log (10000) + bench_test.go:13: benchmark log (1000000) + bench_test.go:13: benchmark log (100000000) + bench_test.go:13: benchmark log (1000000000) +BenchmarkOne-8 1000000000 0.2642 ns/op +BenchmarkTwo +BenchmarkTwo-8 39560503 33.21 ns/op PASS -ok package/basic 3.212s +ok package/bench 1.640s diff --git a/testdata/022-report.xml b/testdata/022-report.xml index 8bef445..a3ae751 100644 --- a/testdata/022-report.xml +++ b/testdata/022-report.xml @@ -1,13 +1,16 @@ - - + + - - - + + + + + +pkg: package/bench]]> diff --git a/testdata/src/bench/bench_test.go b/testdata/src/bench/bench_test.go index 827e8f4..421b9c2 100644 --- a/testdata/src/bench/bench_test.go +++ b/testdata/src/bench/bench_test.go @@ -5,7 +5,12 @@ import ( "testing" ) +func TestOne(t *testing.T) { + t.Logf("test log") +} + func BenchmarkOne(b *testing.B) { + b.Logf("benchmark log (%d)", b.N) for i := 0; i < b.N; i++ { test(i) }