test(sysview): fix gdb no response error in sysview_heap_log tests

This commit is contained in:
Erhan Kurubas
2024-08-07 11:52:14 +02:00
parent c72fec55dd
commit 29c39f5164
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 | | Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | | ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
# SystemView Heap and Log Tracing Example # SystemView Heap and Log Tracing Example

View File

@@ -30,7 +30,7 @@ def test_examples_sysview_tracing_heap_log(idf_path: str, dut: IdfDut) -> None:
dut.gdb.write('mon esp sysview stop', non_blocking=True) dut.gdb.write('mon esp sysview stop', non_blocking=True)
dut.gdb.write('end') dut.gdb.write('end')
dut.gdb.write('c') dut.gdb.write('c', non_blocking=True)
dut.expect('esp_apptrace: Initialized TRAX on CPU0') dut.expect('esp_apptrace: Initialized TRAX on CPU0')
time.sleep(1) # make sure that the sysview file has been generated time.sleep(1) # make sure that the sysview file has been generated