From 6676a1b4bacc418e6fc58195f26d034e1336332b Mon Sep 17 00:00:00 2001 From: David Cermak Date: Tue, 5 Jan 2021 18:54:19 +0100 Subject: [PATCH] ci/mqtt: Made MQTT test app tls insecure capable This is needed for testing different connection modes in the mqtt library, specifically: * test case CONFIG_EXAMPLE_CONNECT_CASE_NO_CERT: default server - expect to connect normally --- .../protocols/mqtt/publish_connect_test/sdkconfig.ci.default | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/test_apps/protocols/mqtt/publish_connect_test/sdkconfig.ci.default b/tools/test_apps/protocols/mqtt/publish_connect_test/sdkconfig.ci.default index 3ae004960c..fbfe696b70 100644 --- a/tools/test_apps/protocols/mqtt/publish_connect_test/sdkconfig.ci.default +++ b/tools/test_apps/protocols/mqtt/publish_connect_test/sdkconfig.ci.default @@ -7,3 +7,5 @@ CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=16384 CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER=n +CONFIG_ESP_TLS_INSECURE=y +CONFIG_ESP_TLS_SKIP_SERVER_CERT_VERIFY=y