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