#!/bin/bash

verbose=""
if [ "$1" = "-v" ]; then
  set -x
  verbose="-v"
fi

set -euo pipefail

./build-go
./u/tester
./reg-test/run -n $verbose
