2020-04-03 01:10:02 +02:00
|
|
|
#!/usr/bin/env bash
|
2018-09-03 13:48:32 +02:00
|
|
|
|
|
|
|
{ coverage debug sys \
|
|
|
|
&& coverage erase \
|
2020-05-20 20:04:14 +02: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 12:20:26 +01:00
|
|
|
&& diff expected_output output \
|
2020-05-20 20:04:14 +02: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 13:48:32 +02:00
|
|
|
&& coverage run -a --source=espcoredump ./test_espcoredump.py \
|
|
|
|
&& coverage report \
|
|
|
|
; } || { echo 'The test for espcoredump has failed!'; exit 1; }
|