#!/bin/sh
cd "`git rev-parse --show-toplevel`"
[ -d results ] || { echo "no results dir. where are you?"; exit 1; }
fname=results/bench-`date +%F-%H%M`
exec go test -run '^Benchmark' -bench . -benchmem -benchtime 30s -count 5 -timeout 8h | tee $fname
