mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 10:25:28 +00:00
Use the `#!/usr/bin/env bash` shebang which is ansible-test friendly. This means we can remove get_ostree_data.sh from the .sanity* files. This also means we can remove the .sanity* files if we do not need them otherwise. Fix other shell scripts to use the friendly shebang and remove from the .sanity* files. Rename `pth` to `path` in honor of nscott Signed-off-by: Rich Megginson <rmeggins@redhat.com>
38 lines
888 B
Bash
Executable file
38 lines
888 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
if [ -n "${DEBUG}" ]
|
|
then
|
|
set -x
|
|
fi
|
|
set -e
|
|
|
|
if [ "$#" -lt 3 ]
|
|
then
|
|
echo "USAGE: ${0} path_to_coverage_binary output_file input_files..."
|
|
echo "Merges all input_files into output file without removing input_files"
|
|
exit 1
|
|
fi
|
|
|
|
# path to coverage binary
|
|
coverage="${1}"
|
|
shift
|
|
|
|
# read by coverage binary
|
|
export COVERAGE_FILE="${1}"
|
|
shift
|
|
|
|
tempdir="$(mktemp -d /tmp/coverage_merge-XXXXXX)"
|
|
# we want to expand ${tempdir} here, so tell SC to be quiet
|
|
# https://github.com/koalaman/shellcheck/wiki/SC2064
|
|
# shellcheck disable=SC2064
|
|
trap "rm -rf '${tempdir}'" EXIT
|
|
|
|
cp --backup=numbered -- "${@}" "${tempdir}"
|
|
# FIXME: Would not work if coverage files are not hidden but they are by
|
|
# default
|
|
shopt -s dotglob
|
|
"${coverage}" combine "${tempdir}/"*
|
|
|
|
echo "Merged data into ${COVERAGE_FILE}"
|
|
./covstats "${COVERAGE_FILE}"
|