diff options
author | Damien George <damien.p.george@gmail.com> | 2018-02-08 11:30:19 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-02-08 11:30:19 +1100 |
commit | 0b12cc8febe11e43c012b12cb2d6ad59bbda4724 (patch) | |
tree | a92cd306da9618d48861c39814902609b240ef0c | |
parent | 923ebe767d2ba8c4534560dc21d3533c37a3f831 (diff) |
.travis.yml,ports/unix/Makefile: Add coverage test for script via stdin.
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | ports/unix/Makefile | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index b98ee9971..27e9fac96 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,6 +58,9 @@ script: - (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests --emit native) - (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests --via-mpy -d basics float) + # test when input script comes from stdin + - cat tests/basics/0prelim.py | ports/unix/micropython_coverage | grep -q 'abc' + # run coveralls coverage analysis (try to, even if some builds/tests failed) - (cd ports/unix && coveralls --root ../.. --build-root . --gcov $(which gcov) --gcov-options '\-o build-coverage/' --include py --include extmod) diff --git a/ports/unix/Makefile b/ports/unix/Makefile index b5f9f8e7d..f7b260e18 100644 --- a/ports/unix/Makefile +++ b/ports/unix/Makefile @@ -258,6 +258,7 @@ coverage_test: coverage cd $(TOP)/tests && MICROPY_MICROPYTHON=../$(DIRNAME)/micropython_coverage ./run-tests -d thread cd $(TOP)/tests && MICROPY_MICROPYTHON=../$(DIRNAME)/micropython_coverage ./run-tests --emit native cd $(TOP)/tests && MICROPY_MICROPYTHON=../$(DIRNAME)/micropython_coverage ./run-tests --via-mpy -d basics float + cat $(TOP)/tests/basics/0prelim.py | ./micropython_coverage | grep -q 'abc' gcov -o build-coverage/py $(TOP)/py/*.c gcov -o build-coverage/extmod $(TOP)/extmod/*.c |