From 121811243f42c720908eb92b4c1d18b4adbeff00 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Thu, 16 Dec 2021 22:40:51 -0500 Subject: [PATCH] Disable the watchdog in QEMU builds. (#13103) The watchdog triggers during crypto tests (long running, full CPU tests) and the warnings it shows both look scary and are not really actionable. We know those tests take a long time, especially in emulation. --- src/test_driver/esp32/sdkconfig_qemu.defaults | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/test_driver/esp32/sdkconfig_qemu.defaults b/src/test_driver/esp32/sdkconfig_qemu.defaults index 6509c5ba7d9f2e..21cf961c44b80a 100644 --- a/src/test_driver/esp32/sdkconfig_qemu.defaults +++ b/src/test_driver/esp32/sdkconfig_qemu.defaults @@ -44,3 +44,8 @@ CONFIG_ENABLE_WIFI_AP=n # Use a custom partition table CONFIG_PARTITION_TABLE_CUSTOM=y CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" + +# No watchdog - we run on the host and tests have timeouts +# Crypto tests generally take long enough for the watchdog to trigger +# otherwise. +CONFIG_ESP_TASK_WDT=n