#!/usr/bin/env bash
#
# Usage:
# ./coverage
#
# Run kcov on the tests, and merge the results.
#
# Environment variables:
# TRAVIS_JOB_ID - id for coveralls, defaults to none
# KCOV - path to kcov, defaults to 'kcov'
[ && COVERALLS_ID="--coveralls-id="
[ && KCOV=kcov
# Rebuild tests with dead code included, and get a list of the filenames.
TEST_FILES=
KCOV_OPTS="--verify --exclude-pattern=/.cargo"
OUT_DIR=target/kcov
for; do
done