mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
GNUMakefile: Add 'coverage' target (requires luacov and luacov-console)
This commit is contained in:
parent
3059744ca4
commit
1b96a40a13
1 changed files with 8 additions and 1 deletions
|
@ -19,7 +19,7 @@ INSTALL_EXEC=$(INSTALL) -m755
|
||||||
MKDIR=install -d
|
MKDIR=install -d
|
||||||
MKDIR_PRIVATE=$(MKDIR) -m750
|
MKDIR_PRIVATE=$(MKDIR) -m750
|
||||||
|
|
||||||
.PHONY: all test clean install
|
.PHONY: all test coverage clean install
|
||||||
|
|
||||||
all: prosody.install prosodyctl.install prosody.cfg.lua.install prosody.version
|
all: prosody.install prosodyctl.install prosody.cfg.lua.install prosody.version
|
||||||
$(MAKE) -C util-src install
|
$(MAKE) -C util-src install
|
||||||
|
@ -68,6 +68,13 @@ clean:
|
||||||
test:
|
test:
|
||||||
busted --lua=$(RUNWITH)
|
busted --lua=$(RUNWITH)
|
||||||
|
|
||||||
|
coverage:
|
||||||
|
-rm -- luacov.*
|
||||||
|
busted --lua=$(RUNWITH) -c
|
||||||
|
luacov
|
||||||
|
luacov-console
|
||||||
|
luacov-console -s
|
||||||
|
|
||||||
util/%.so:
|
util/%.so:
|
||||||
$(MAKE) install -C util-src
|
$(MAKE) install -C util-src
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue