2020-04-02 19:10:02 -04:00
|
|
|
#!/usr/bin/env bash
|
2018-09-03 07:48:32 -04:00
|
|
|
|
|
|
|
{ coverage debug sys \
|
|
|
|
&& coverage erase \
|
2020-05-20 14:04:14 -04:00
|
|
|
&& coverage run -a --source=espcoredump ../espcoredump.py info_corefile -m -t b64 -c coredump.b64 -s core.elf test.elf &> output \
|
2019-11-05 06:20:26 -05:00
|
|
|
&& diff expected_output output \
|
2020-05-20 14:04:14 -04:00
|
|
|
&& coverage run -a --source=espcoredump ../espcoredump.py info_corefile -m -t elf -c core.elf test.elf &> output2 \
|
|
|
|
&& diff expected_output output2 \
|
2018-09-03 07:48:32 -04:00
|
|
|
&& coverage run -a --source=espcoredump ./test_espcoredump.py \
|
|
|
|
&& coverage report \
|
|
|
|
; } || { echo 'The test for espcoredump has failed!'; exit 1; }
|