From 70ee0885ad8e959f504ad9d2ece29f87273eb68e Mon Sep 17 00:00:00 2001 From: Zim Kalinowski Date: Wed, 29 Jun 2022 10:34:32 +0200 Subject: [PATCH] freertos: don't use FreeRTOS SMP build for partition nearly full warning test --- tools/ci/test_build_system_cmake.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ci/test_build_system_cmake.sh b/tools/ci/test_build_system_cmake.sh index a7c43de2f4..489ea3f344 100755 --- a/tools/ci/test_build_system_cmake.sh +++ b/tools/ci/test_build_system_cmake.sh @@ -819,6 +819,8 @@ endmenu\n" >> ${IDF_PATH}/Kconfig cp ${IDF_PATH}/components/partition_table/partitions_singleapp.csv partitions.csv ${SED} -i "s/factory, app, factory, , 1M/factory, app, factory, , 170K/" partitions.csv echo "CONFIG_PARTITION_TABLE_CUSTOM=y" > sdkconfig + # don't use FreeRTOS SMP build for this test - follow up ticket: IDF-5386 + echo "CONFIG_FREERTOS_SMP=n" >> sdkconfig ( idf.py build 2>&1 | grep "partition is nearly full" ) || failure "No warning for nearly full smallest partition was given when the condition is fulfilled" rm -f partitions.csv sdkconfig ( idf.py build 2>&1 | grep "partition is nearly full" ) && failure "Warning for nearly full smallest partition was given when the condition is not fulfilled"