-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'bugfix/eh_frame_backtrace' into 'master'
fix(system): fixed eh-frame backtrace issue from WDT See merge request espressif/esp-idf!33112
- Loading branch information
Showing
7 changed files
with
66 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
idf_component_register(SRCS "eh_frame_main.c" | ||
INCLUDE_DIRS "." | ||
REQUIRES esp_system) | ||
REQUIRES esp_system unity esp_timer) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD | ||
# SPDX-License-Identifier: CC0-1.0 | ||
import pytest | ||
from pytest_embedded import Dut | ||
|
||
|
||
@pytest.mark.esp32c2 | ||
@pytest.mark.esp32c3 | ||
@pytest.mark.esp32c5 | ||
@pytest.mark.esp32c6 | ||
@pytest.mark.esp32h2 | ||
@pytest.mark.esp32p4 | ||
@pytest.mark.generic | ||
def test_eh_frame_wdt(dut: Dut) -> None: | ||
dut.expect_exact('Press ENTER to see the list of tests') | ||
dut.confirm_write('"Test task wdt can print backtrace with eh-frame"', expect_str=f'Running') | ||
|
||
# Expect a backtrace which is at least 3 PC-SP pairs deep | ||
dut.expect(r'Backtrace: (0x[a-fA-F0-9]+:0x[a-fA-F0-9]+\s*){3,}') | ||
|
||
|
||
@pytest.mark.esp32c2 | ||
@pytest.mark.esp32c3 | ||
@pytest.mark.esp32c5 | ||
@pytest.mark.esp32c6 | ||
@pytest.mark.esp32h2 | ||
@pytest.mark.esp32p4 | ||
@pytest.mark.generic | ||
def test_eh_frame_panic(dut: Dut) -> None: | ||
dut.expect_exact('Press ENTER to see the list of tests') | ||
dut.confirm_write('"Test panic can print backtrace with eh-frame"', expect_str=f'Running') | ||
|
||
# Expect a backtrace which is at least 3 PC-SP pairs deep | ||
dut.expect(r'Backtrace: (0x[a-fA-F0-9]+:0x[a-fA-F0-9]+\s*){3,}') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# Enable eh_frame sections generation | ||
CONFIG_ESP_SYSTEM_USE_EH_FRAME=y | ||
# use non-rom systimer implementation, can't backtrace functions in ROM | ||
CONFIG_HAL_SYSTIMER_USE_ROM_IMPL=n |