mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
17 lines
583 B
Bash
Executable File
17 lines
583 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [ "$(xtensa-esp32-elf-gcc -dumpversion)" = "5.2.0" ]; then
|
|
EXPECTED_OUTPUT="expected_output"
|
|
else
|
|
# GCC_NOT_5_2_0 just a hint to remove later
|
|
EXPECTED_OUTPUT="expected_output_new_CT"
|
|
fi
|
|
|
|
{ coverage debug sys \
|
|
&& coverage erase \
|
|
&& coverage run -a --source=espcoredump ../espcoredump.py info_corefile -m -t b64 -c coredump.b64 test.elf &> output \
|
|
&& diff ${EXPECTED_OUTPUT} output \
|
|
&& coverage run -a --source=espcoredump ./test_espcoredump.py \
|
|
&& coverage report \
|
|
; } || { echo 'The test for espcoredump has failed!'; exit 1; }
|