From 08079631eb27c0ff8219f2ccf8c025cb12c4681c Mon Sep 17 00:00:00 2001 From: Darian Leung Date: Wed, 28 Feb 2024 20:39:52 +0800 Subject: [PATCH] change(console): Add build test for no console output This commit adds a build test to test the scenario where both the primary and secondary console outputs are disabled by Kconfig. --- .../system/build_test/sdkconfig.ci.console_none_esp32c3 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tools/test_apps/system/build_test/sdkconfig.ci.console_none_esp32c3 diff --git a/tools/test_apps/system/build_test/sdkconfig.ci.console_none_esp32c3 b/tools/test_apps/system/build_test/sdkconfig.ci.console_none_esp32c3 new file mode 100644 index 0000000000..772d6b4f30 --- /dev/null +++ b/tools/test_apps/system/build_test/sdkconfig.ci.console_none_esp32c3 @@ -0,0 +1,6 @@ +# Config to test that console can build with all outputs set to none (both primary and secondary) + +# Using ESP32-C3 because it supports a secondary console output (i.e., USJ) +CONFIG_IDF_TARGET="esp32c3" +CONFIG_ESP_CONSOLE_NONE=y +CONFIG_ESP_CONSOLE_SECONDARY_NONE=y