From 0309620fd6449704b00798a29bd10cf27845c7fe Mon Sep 17 00:00:00 2001 From: Frank Haverland Date: Sun, 28 Apr 2024 20:13:18 +0200 Subject: [PATCH] fix merge failure in earlier merges --- code/test/test_suite_flowcontroll.cpp | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/code/test/test_suite_flowcontroll.cpp b/code/test/test_suite_flowcontroll.cpp index eba0027c..9b1019f4 100644 --- a/code/test/test_suite_flowcontroll.cpp +++ b/code/test/test_suite_flowcontroll.cpp @@ -156,22 +156,9 @@ extern "C" void app_main() { initGPIO(); Init_NVS_SDCard(); - esp_log_level_set("*", ESP_LOG_ERROR); // set all components to ERROR level + esp_log_level_set("*", ESP_LOG_DEBUG); // set all components to ERROR level - UNITY_BEGIN(); - RUN_TEST(testNegative_Issues); - RUN_TEST(testNegative); - - RUN_TEST(test_analogToDigit_Standard); - RUN_TEST(test_analogToDigit_Transition); - RUN_TEST(test_doFlowPP); - RUN_TEST(test_doFlowPP1); - RUN_TEST(test_doFlowPP2); - RUN_TEST(test_doFlowPP3); - RUN_TEST(test_doFlowPP4); - - // getReadoutRawString test - RUN_TEST(test_getReadoutRawString); - - UNITY_END(); + // Create dedicated testing task (heap size can be configured - large enough to handle a lot of testing cases) + // ******************************************** + xTaskCreate(&task_UnityTesting, "task_UnityTesting", 12 * 1024, NULL, tskIDLE_PRIORITY+2, NULL); }