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# zfuzz wraps internal/tool/fuzz and is useful for fuzz testing each of
8# the implementations in this repository.
9cd $(dirname "${BASH_SOURCE[0]}")/internal/tool/fuzz
10./fuzz.sh "$@"
11