https://gitlab.com/tezos/tezos
Raw File
Tip revision: 6113e73bd66cf1f514dba69a0d9082b83457f2e8 authored by Julien Coolen on 12 May 2023, 08:58:59 UTC
SCORU: add new constructor to reveal_data type
Tip revision: 6113e73
with_coverage.sh
#!/bin/sh

set -e

BISECT_FILE=$(pwd)/_coverage_output/

export BISECT_FILE

export DUNE_INSTRUMENT_WITH=bisect_ppx

if [ -z "$1" ]; then
    echo "Missing command to run, example:"
    echo "${0} dune runtest src/lib_shell"
    exit 1
fi

echo "Running $* with:"
echo "BISECT_FILE=${BISECT_FILE}"
echo "DUNE_INSTRUMENT_WITH=bisect_ppx"
echo "-------------------------------"

"$@"
back to top