mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
93c7ceccd9
So `make --assume-old=all` can be used for both `testbase` & `testfront`.
68 lines
1.7 KiB
Makefile
68 lines
1.7 KiB
Makefile
# Run. {{{
|
|
|
|
PHONY += run run-prompt run-wbuilder
|
|
|
|
define run_script
|
|
for a in $(RARGS); do
|
|
[[ "$$a" = [-/]* ]] || a="$${PWD}/$$a";
|
|
set -- "$$@" "$$a";
|
|
done;
|
|
cd $(INSTALL_DIR)/koreader &&
|
|
while true; do
|
|
code=0;
|
|
$(RWRAP) ./luajit reader.lua "$$@" || code=$$?;
|
|
[ $${code} -eq 85 ] || exit $${code};
|
|
set --;
|
|
done
|
|
endef
|
|
|
|
run: all
|
|
$(strip $(run_script))
|
|
|
|
run-prompt: all
|
|
cd $(INSTALL_DIR)/koreader && ./luajit -i setupkoenv.lua
|
|
|
|
run-wbuilder: all
|
|
cd $(INSTALL_DIR)/koreader && EMULATE_READER_W=540 EMULATE_READER_H=720 ./luajit tools/wbuilder.lua
|
|
|
|
# }}}
|
|
|
|
# Testing & coverage. {{{
|
|
|
|
PHONY += coverage coverage-full coverage-run coverage-summary test testbase testfront
|
|
|
|
$(INSTALL_DIR)/koreader/.busted: .busted
|
|
$(SYMLINK) .busted $@
|
|
|
|
$(INSTALL_DIR)/koreader/.luacov:
|
|
$(SYMLINK) .luacov $@
|
|
|
|
testbase: all test-data $(OUTPUT_DIR)/.busted $(OUTPUT_DIR)/spec/base
|
|
cd $(OUTPUT_DIR) && $(BUSTED_LUAJIT) $(or $(BUSTED_OVERRIDES),./spec/base/unit)
|
|
|
|
testfront: all test-data $(INSTALL_DIR)/koreader/.busted
|
|
# sdr files may have unexpected impact on unit testing
|
|
-rm -rf spec/unit/data/*.sdr
|
|
cd $(INSTALL_DIR)/koreader && $(BUSTED_LUAJIT) $(BUSTED_OVERRIDES)
|
|
|
|
test: testbase testfront
|
|
|
|
coverage: coverage-summary
|
|
|
|
coverage-run: all test-data $(INSTALL_DIR)/koreader/.busted $(INSTALL_DIR)/koreader/.luacov
|
|
-rm -rf $(INSTALL_DIR)/koreader/luacov.*.out
|
|
cd $(INSTALL_DIR)/koreader && $(BUSTED_LUAJIT) --coverage --exclude-tags=nocov
|
|
|
|
coverage-full: coverage-run
|
|
cd $(INSTALL_DIR)/koreader && cat luacov.report.out
|
|
|
|
coverage-summary: coverage-run
|
|
# coverage report summary
|
|
cd $(INSTALL_DIR)/koreader && tail -n \
|
|
+$$(($$(grep -nm1 -e "^Summary$$" luacov.report.out|cut -d: -f1)-1)) \
|
|
luacov.report.out
|
|
|
|
# }}}
|
|
|
|
# vim: foldmethod=marker foldlevel=0
|