Add synchronous file write benchmark

This commit is contained in:
Jae Kwon 2015-12-20 11:37:54 -08:00
parent e57f3596a1
commit 5bf7796004
1 changed files with 29 additions and 0 deletions

29
benchmarks/os_test.go Normal file
View File

@ -0,0 +1,29 @@
package benchmarks
import (
"os"
"testing"
. "github.com/tendermint/go-common"
)
func BenchmarkFileWrite(b *testing.B) {
b.StopTimer()
file, err := os.OpenFile("benchmark_file_write.out",
os.O_RDWR|os.O_CREATE|os.O_APPEND, 0600)
if err != nil {
b.Error(err)
}
testString := RandStr(200) + "\n"
b.StartTimer()
for i := 0; i < b.N; i++ {
file.Write([]byte(testString))
}
file.Close()
err = os.Remove("benchmark_file_write.out")
if err != nil {
b.Error(err)
}
}