From 2f1feb8ea136cf8323e895d71e1911a99d778493 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Fri, 22 Jan 2021 17:58:08 +1100 Subject: [PATCH] driver test: Increase stack for the "spi poll tasks" test Current stack usage gets very close to overflowing --- components/driver/test/test_spi_master.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/driver/test/test_spi_master.c b/components/driver/test/test_spi_master.c index f6428d7615..169f7a3ebb 100644 --- a/components/driver/test/test_spi_master.c +++ b/components/driver/test/test_spi_master.c @@ -1204,9 +1204,9 @@ TEST_CASE("spi poll tasks","[spi]") ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &context3.handle); TEST_ASSERT(ret==ESP_OK); - xTaskCreate( spi_task1, "task1", 2048, &context1, 0, &task1 ); - xTaskCreate( spi_task2, "task2", 2048, &context2, 0, &task2 ); - xTaskCreate( spi_task3, "task3", 2048, &context3, 0, &task3 ); + xTaskCreate( spi_task1, "task1", 3072, &context1, 0, &task1 ); + xTaskCreate( spi_task2, "task2", 3072, &context2, 0, &task2 ); + xTaskCreate( spi_task3, "task3", 3072, &context3, 0, &task3 ); for(;;){ vTaskDelay(10);