[analyze-memory] Add RAM symbol analysis by component (#13040)

This commit is contained in:
J. Nick Koston
2026-01-07 08:24:44 -10:00
committed by GitHub
parent 8e40a55d5d
commit 39526e5360
7 changed files with 514 additions and 48 deletions

View File

@@ -2478,6 +2478,7 @@ def test_command_analyze_memory_success(
"/path/to/objdump",
"/path/to/readelf",
set(), # No external components
idedata=mock_get_idedata.return_value,
)
# Verify analysis was run
@@ -2547,6 +2548,7 @@ def test_command_analyze_memory_with_external_components(
"/path/to/objdump",
"/path/to/readelf",
{"my_custom_component"}, # External component detected
idedata=mock_get_idedata.return_value,
)