Skip to content

Commit

Permalink
1.0.7 Don't panic() if directory exists
Browse files Browse the repository at this point in the history
  • Loading branch information
cunnie committed Mar 21, 2018
1 parent 44073b9 commit 759a7df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -20,7 +20,7 @@ following example, we are logged into a Linux box and we download and run the
Linux binary:

```
curl -o gobonniego -L https://github.com/cunnie/gobonniego/releases/download/1.0.6/gobonniego-linux-amd64
curl -o gobonniego -L https://github.com/cunnie/gobonniego/releases/download/1.0.7/gobonniego-linux-amd64
chmod +x gobonniego
./gobonniego
```
Expand All @@ -44,7 +44,7 @@ gobonniego
Typical output:

```
2018/02/19 12:03:16 gobonniego starting. version: 1.0.6, threads: 8, disk space to use (MiB): 3984
2018/02/19 12:03:16 gobonniego starting. version: 1.0.7, threads: 8, disk space to use (MiB): 3984
Sequential Write MB/s: 748.22
Sequential Read MB/s: 1025.19
IOPS: 23832
Expand All @@ -60,7 +60,7 @@ gobonniego -v
Yields:

```
2018/02/24 17:20:20 gobonniego starting. version: 1.0.6, threads: 8, disk space to use (MiB): 512
2018/02/24 17:20:20 gobonniego starting. version: 1.0.7, threads: 8, disk space to use (MiB): 512
2018/02/24 17:20:20 Number of CPU cores: 8
2018/02/24 17:20:20 Total system RAM (MiB): 65536
2018/02/24 17:20:20 Bonnie working directory: /var/folders/lp/k0g2hcfs0bz1c4zn90pnh32w0000gn/T/gobonniegoParent337382325
Expand Down Expand Up @@ -117,7 +117,7 @@ Yields:

```json
{
"version": "1.0.6",
"version": "1.0.7",
"gobonniego_directory": "/var/folders/zp/vmj1nyzj6p567k5syt3hvq3h0000gn/T/gobonniegoParent983654097/gobonniego",
"disk_space_used_gib": 0.5,
"num_readers_and_writers": 4,
Expand Down Expand Up @@ -166,7 +166,7 @@ gobonniego -version
Yields:

```
gobonniego version 1.0.6
gobonniego version 1.0.7
```

`gobonniego -h` will print out the available command line options and their
Expand Down
2 changes: 1 addition & 1 deletion bench/bench.go
Expand Up @@ -14,7 +14,7 @@ import (
"time"
)

const Version = "1.0.6"
const Version = "1.0.7"
const Blocksize = 0x1 << 16 // 65,536 bytes, 2^16 bytes

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

0 comments on commit 759a7df

Please sign in to comment.