diff options
author | Damien George <damien.p.george@gmail.com> | 2016-12-22 11:28:29 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-12-22 11:28:29 +1100 |
commit | efa206d955cb5482b604ba650a1af56f609e16bd (patch) | |
tree | bb1a9ef3207c5aa3aa555fe32ea84aec5f64ccf5 /unix | |
parent | 97f3797b820e18ad475658442caec1ce97563771 (diff) | |
download | micropython-efa206d955cb5482b604ba650a1af56f609e16bd.tar.gz micropython-efa206d955cb5482b604ba650a1af56f609e16bd.zip |
unix/Makefile: Make "coverage_test" target mirror Travis test actions.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/Makefile b/unix/Makefile index 15829f2845..ff9e3bc3f5 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -243,7 +243,9 @@ coverage: coverage_test: coverage $(eval DIRNAME=$(notdir $(CURDIR))) cd ../tests && MICROPY_MICROPYTHON=../$(DIRNAME)/micropython_coverage ./run-tests + cd ../tests && MICROPY_MICROPYTHON=../$(DIRNAME)/micropython_coverage ./run-tests -d thread cd ../tests && MICROPY_MICROPYTHON=../$(DIRNAME)/micropython_coverage ./run-tests --emit native + cd ../tests && MICROPY_MICROPYTHON=../$(DIRNAME)/micropython_coverage ./run-tests --via-mpy -d basics float gcov -o build-coverage/py ../py/*.c gcov -o build-coverage/extmod ../extmod/*.c |