diff options
Diffstat (limited to '')
-rwxr-xr-x | scripts/luacov_gen_empty.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/luacov_gen_empty.sh b/scripts/luacov_gen_empty.sh new file mode 100755 index 0000000..a224081 --- /dev/null +++ b/scripts/luacov_gen_empty.sh @@ -0,0 +1,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 |