8 lines
61 B
Bash
8 lines
61 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
|
||
|
go test -bench .
|