summaryrefslogtreecommitdiffstats
path: root/scripts/luacov_gen_empty.sh
blob: 127734df4889e9ac59a7becb920039337263f80e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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