diff options
author | Adin Scannell <ascannell@google.com> | 2021-01-12 12:36:17 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-12 12:38:22 -0800 |
commit | 4e03e87547853523d4ff941935a6ef1712518c61 (patch) | |
tree | e930ce0e5f15f7041e7b74daca05acc7afbd2558 /test/benchmarks | |
parent | a20da708291e2e5bdece5176dce61c1b4b10b7d9 (diff) |
Fix simple mistakes identified by goreportcard.
These are primarily simplification and lint mistakes. However, minor
fixes are also included and tests added where appropriate.
PiperOrigin-RevId: 351425971
Diffstat (limited to 'test/benchmarks')
-rw-r--r-- | test/benchmarks/base/sysbench_test.go | 6 | ||||
-rw-r--r-- | test/benchmarks/fs/fio_test.go | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/test/benchmarks/base/sysbench_test.go b/test/benchmarks/base/sysbench_test.go index 80569687c..d0f3f9261 100644 --- a/test/benchmarks/base/sysbench_test.go +++ b/test/benchmarks/base/sysbench_test.go @@ -31,7 +31,7 @@ type testCase struct { // BenchmarSysbench runs sysbench on the runtime. func BenchmarkSysbench(b *testing.B) { testCases := []testCase{ - testCase{ + { name: "CPU", test: &tools.SysbenchCPU{ SysbenchBase: tools.SysbenchBase{ @@ -39,7 +39,7 @@ func BenchmarkSysbench(b *testing.B) { }, }, }, - testCase{ + { name: "Memory", test: &tools.SysbenchMemory{ SysbenchBase: tools.SysbenchBase{ @@ -47,7 +47,7 @@ func BenchmarkSysbench(b *testing.B) { }, }, }, - testCase{ + { name: "Mutex", test: &tools.SysbenchMutex{ SysbenchBase: tools.SysbenchBase{ diff --git a/test/benchmarks/fs/fio_test.go b/test/benchmarks/fs/fio_test.go index 83b8376a5..242374e2c 100644 --- a/test/benchmarks/fs/fio_test.go +++ b/test/benchmarks/fs/fio_test.go @@ -32,37 +32,37 @@ import ( // caches can be dropped. func BenchmarkFio(b *testing.B) { testCases := []tools.Fio{ - tools.Fio{ + { Test: "write", Size: b.N, BlockSize: 4, IODepth: 4, }, - tools.Fio{ + { Test: "write", Size: b.N, BlockSize: 1024, IODepth: 4, }, - tools.Fio{ + { Test: "read", Size: b.N, BlockSize: 4, IODepth: 4, }, - tools.Fio{ + { Test: "read", Size: b.N, BlockSize: 1024, IODepth: 4, }, - tools.Fio{ + { Test: "randwrite", Size: b.N, BlockSize: 4, IODepth: 4, }, - tools.Fio{ + { Test: "randread", Size: b.N, BlockSize: 4, |