blob: a953d914e80167d2a8707bb246706cfb830d4121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env 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
|