Comparison

GNUmakefile @ 9429:5f51710d7c1e

make coverage: Allow overriding path to busted
author Kim Alvefur <zash@zash.se>
date Wed, 03 Oct 2018 16:41:37 +0200
parent 9423:d4e8aedc0f82
child 9779:0b04099b49de
comparison
equal deleted inserted replaced
9428:8e7feec95e8d 9429:5f51710d7c1e
71 test: 71 test:
72 $(BUSTED) --lua=$(RUNWITH) 72 $(BUSTED) --lua=$(RUNWITH)
73 73
74 coverage: 74 coverage:
75 -rm -- luacov.* 75 -rm -- luacov.*
76 busted --lua=$(RUNWITH) -c 76 $(BUSTED) --lua=$(RUNWITH) -c
77 luacov 77 luacov
78 luacov-console 78 luacov-console
79 luacov-console -s 79 luacov-console -s
80 @echo "To inspect individual files run: luacov-console -l FILENAME" 80 @echo "To inspect individual files run: luacov-console -l FILENAME"
81 81