[fix] Bring kodev cov command in line with kodev test (#6341)

reviewable/pr6348/r1
Frans de Jonge 4 years ago committed by GitHub
parent f7d538b108
commit 8a61e70fad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
kodev

@ -773,6 +773,7 @@ OPTIONS:
--show-previous show coverage stats from previous run --show-previous show coverage stats from previous run
--full show full coverage report (down to each line) --full show full coverage report (down to each line)
--no-debug no debugging symbols (default for target devices)
" "
show_full=0 show_full=0
show_previous=0 show_previous=0
@ -786,6 +787,10 @@ OPTIONS:
--show-previous) --show-previous)
show_previous=1 show_previous=1
;; ;;
--no-debug)
export KODEBUG=
KODEBUG_NO_DEFAULT=1
;;
-h | --help) -h | --help)
echo "${COV_HELP_MSG}" echo "${COV_HELP_MSG}"
exit 0 exit 0
@ -799,7 +804,8 @@ OPTIONS:
shift shift
done done
check_submodules && make set -e
check_submodules && kodev-build
setup_env setup_env
make "${EMU_DIR}/.busted" make "${EMU_DIR}/.busted"
pushd "${EMU_DIR}" && { pushd "${EMU_DIR}" && {
@ -867,8 +873,9 @@ Supported commands:
log Tail log stream for a running KOReader app log Tail log stream for a running KOReader app
release Build KOReader release package release Build KOReader release package
run Run KOReader run Run KOReader
test Run tests test Run busted tests
check Run static-analysis check Run luacheck static-analysis
cov Run busted tests for coverage
wbuilder Run wbuilder.lua script (useful for building new UI widget) wbuilder Run wbuilder.lua script (useful for building new UI widget)
" "
[ $# -lt 1 ] && { [ $# -lt 1 ] && {

Loading…
Cancel
Save