1
0
Fork 0
knot-resolver/scripts/luacov_gen_empty.sh
Daniel Baumann fbc604e215
Adding upstream version 5.7.5.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:56:17 +02:00

18 lines
471 B
Bash
Executable file

#!/bin/bash
# SPDX-License-Identifier: GPL-3.0-or-later
# Generate stats file in luacov format indicating that files named on stdin
# were not processed.
#
# Normally luacov does not know about files which were not loaded so
# without this manual addition the files are missing in coverage report.
# Usage:
# $ luacov_gen_empty.sh < list_of_lua_files > luacov.empty_stats.out
set -o errexit -o nounset
IFS=$'\n'
while read FILENAME
do
echo -e "0:${FILENAME}\n "
done