Skip to content

Commit 188c5e7

Browse files
committed
1.0.9 -seconds flag sets duration of benchmark
1 parent ce22987 commit 188c5e7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ following example, we are logged into a Linux box and we download and run the
2020
Linux binary:
2121

2222
```
23-
curl -o gobonniego -L https://github.com/cunnie/gobonniego/releases/download/1.0.8/gobonniego-linux-amd64
23+
curl -o gobonniego -L https://github.com/cunnie/gobonniego/releases/download/1.0.9/gobonniego-linux-amd64
2424
chmod +x gobonniego
2525
./gobonniego
2626
```
@@ -44,7 +44,7 @@ gobonniego
4444
Typical output:
4545

4646
```
47-
2018/04/12 06:20:09 gobonniego starting. version: 1.0.8, runs: 1, seconds: 0, threads: 4, disk space to use (MiB): 512
47+
2018/04/12 06:20:09 gobonniego starting. version: 1.0.9, runs: 1, seconds: 0, threads: 4, disk space to use (MiB): 512
4848
Sequential Write MB/s: 748.22
4949
Sequential Read MB/s: 1025.19
5050
IOPS: 23832
@@ -60,7 +60,7 @@ gobonniego -v
6060
Yields:
6161

6262
```
63-
2018/04/12 06:20:09 gobonniego starting. version: 1.0.8, runs: 1, seconds: 0, threads: 4, disk space to use (MiB): 512
63+
2018/04/12 06:20:09 gobonniego starting. version: 1.0.9, runs: 1, seconds: 0, threads: 4, disk space to use (MiB): 512
6464
2018/02/24 17:20:20 Number of CPU cores: 8
6565
2018/02/24 17:20:20 Total system RAM (MiB): 65536
6666
2018/02/24 17:20:20 Bonnie working directory: /var/folders/lp/k0g2hcfs0bz1c4zn90pnh32w0000gn/T/gobonniegoParent337382325
@@ -134,7 +134,7 @@ Yields:
134134

135135
```json
136136
{
137-
"version": "1.0.8",
137+
"version": "1.0.9",
138138
"start_time": "2018-04-12T06:46:00.274348275-07:00",
139139
"gobonniego_directory": "/var/folders/zp/vmj1nyzj6p567k5syt3hvq3h0000gn/T/gobonniegoParent456127644/gobonniego",
140140
"disk_space_used_gib": 0.5,
@@ -193,7 +193,7 @@ gobonniego -version
193193
Yields:
194194

195195
```
196-
gobonniego version 1.0.8
196+
gobonniego version 1.0.9
197197
```
198198

199199
`gobonniego -h` will print out the available command line options and their

bench/bench.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"time"
1515
)
1616

17-
const Version = "1.0.8"
17+
const Version = "1.0.9"
1818
const Blocksize = 0x1 << 16 // 65,536 bytes, 2^16 bytes
1919

2020
// bench.Mark{} -- haha! Get it? "benchmark"!

0 commit comments

Comments
 (0)