1#!/bin/bash
2#
3# Copyright 2017, Joe Tsai. All rights reserved.
4# Use of this source code is governed by a BSD-style
5# license that can be found in the LICENSE.md file.
6
7# zbench wraps internal/tool/bench and is useful for comparing benchmarks from
8# the implementations in this repository relative to other implementations.
9#
10# See internal/tool/bench/main.go for more details.
11cd $(dirname "${BASH_SOURCE[0]}")/internal/tool/bench
12go run $(go list -f '{{ join .GoFiles "\n" }}') "$@"
13