|
|
@@ -0,0 +1,44 @@
|
|
|
+# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
|
+# SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
|
+import os
|
|
|
+import re
|
|
|
+import sys
|
|
|
+
|
|
|
+import pexpect
|
|
|
+import pytest
|
|
|
+from pytest_embedded import Dut
|
|
|
+
|
|
|
+
|
|
|
+@pytest.mark.generic
|
|
|
+@pytest.mark.supported_targets
|
|
|
+def test_monitor_addr_lookup(config: str, dut: Dut) -> None:
|
|
|
+ # The port needs to be closed because idf_monitor.py will connect to it
|
|
|
+ dut.serial.stop_redirect_thread()
|
|
|
+
|
|
|
+ monitor_py = os.path.join(os.environ['IDF_PATH'], 'tools', 'idf_monitor.py')
|
|
|
+ monitor_cmd = ' '.join([sys.executable, monitor_py, os.path.join(dut.app.binary_path, 'monitor_addr_lookup.elf'),
|
|
|
+ '--port', str(dut.serial.port)])
|
|
|
+ monitor_log_path = os.path.join(dut.logdir, 'monitor.txt')
|
|
|
+
|
|
|
+ with open(monitor_log_path, 'w') as log, pexpect.spawn(monitor_cmd, logfile=log, timeout=5, encoding='utf-8', codec_errors='ignore') as p:
|
|
|
+ p.expect_exact('main_task: Calling app_main()')
|
|
|
+
|
|
|
+ ADDRESS = '0x[a-f0-9]{8}'
|
|
|
+
|
|
|
+ p.expect(re.compile(r'app_main is running from ({})'.format(ADDRESS)))
|
|
|
+ a = p.match.group(1)
|
|
|
+ p.expect_exact('{}: app_main at'.format(a))
|
|
|
+
|
|
|
+ p.expect(re.compile(r'Initializer function at ({})'.format(ADDRESS)))
|
|
|
+ a = p.match.group(1)
|
|
|
+ p.expect_exact('{}: initialize at'.format(a))
|
|
|
+
|
|
|
+ p.expect(re.compile(r'Got \d+ stored at ({}) and ({}) from a function from ({})'.format(ADDRESS, ADDRESS, ADDRESS)))
|
|
|
+ var1 = p.match.group(1)
|
|
|
+ var2 = p.match.group(2)
|
|
|
+ func = p.match.group(3)
|
|
|
+ match_index = p.expect([str(var1), str(var2), pexpect.TIMEOUT])
|
|
|
+ assert match_index == 2 # should be TIMEOUT because addr2line should not match addresses of variables
|
|
|
+ p.expect_exact('{}: get_random_number at'.format(func))
|
|
|
+
|
|
|
+ p.expect_exact('This is the end of the report')
|