diff --git a/components/mdns/tests/test_afl_fuzz_host/Makefile b/components/mdns/tests/test_afl_fuzz_host/Makefile index 313b21ac5..6f45edb9d 100644 --- a/components/mdns/tests/test_afl_fuzz_host/Makefile +++ b/components/mdns/tests/test_afl_fuzz_host/Makefile @@ -26,10 +26,9 @@ CFLAGS=-g -Wno-unused-value -Wno-missing-declarations -Wno-pointer-bool-conversi -I$(COMPONENTS_DIR)/heap/include \ -I$(COMPONENTS_DIR)/log/include \ -I$(COMPONENTS_DIR)/lwip/lwip/src/include \ + -I$(COMPONENTS_DIR)/linux/include \ -I$(COMPONENTS_DIR)/lwip/port/esp32/include \ -I$(COMPONENTS_DIR)/lwip/lwip/src/include/lwip/apps \ - -I$(COMPONENTS_DIR)/newlib/platform_include \ - -I$(COMPONENTS_DIR)/soc/include \ -I$(COMPONENTS_DIR)/soc/include \ -I$(COMPONENTS_DIR)/soc/esp32/include \ -I$(COMPONENTS_DIR)/soc/src/esp32/include \ diff --git a/components/mdns/tests/test_apps/main/Kconfig.projbuild b/components/mdns/tests/test_apps/main/Kconfig.projbuild index d5d791a70..a1c0d729c 100644 --- a/components/mdns/tests/test_apps/main/Kconfig.projbuild +++ b/components/mdns/tests/test_apps/main/Kconfig.projbuild @@ -24,5 +24,17 @@ menu "Example Configuration" help If enabled, a portion of MAC address is added to the hostname, this is used for evaluation of tests in CI + config MDNS_ADD_MAC_TO_HOSTNAME + bool "Add mac suffix to hostname" + default n + help + If enabled, a portion of MAC address is added to the hostname, this is used + for evaluation of tests in CI + config MDNS_PUBLISH_DELEGATE_HOST + bool "Publish a delegated host" + help + Enable publishing a delegated host other than ESP32. + The example will also add a mock service for this host. + endmenu diff --git a/components/mdns/tests/test_apps/sdkconfig.ci b/components/mdns/tests/test_apps/sdkconfig.ci index 703b4543e..d89171dda 100644 --- a/components/mdns/tests/test_apps/sdkconfig.ci +++ b/components/mdns/tests/test_apps/sdkconfig.ci @@ -1,5 +1,4 @@ CONFIG_IDF_TARGET="esp32" -CONFIG_MDNS_RESOLVE_TEST_SERVICES=y CONFIG_MDNS_ADD_MAC_TO_HOSTNAME=y CONFIG_MDNS_PUBLISH_DELEGATE_HOST=y CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y @@ -12,4 +11,3 @@ CONFIG_EXAMPLE_ETH_MDIO_GPIO=18 CONFIG_EXAMPLE_ETH_PHY_RST_GPIO=5 CONFIG_EXAMPLE_ETH_PHY_ADDR=1 CONFIG_EXAMPLE_CONNECT_IPV6=y -CONFIG_MDNS_BUTTON_GPIO=32