From 0a878f0e85812579ad002831fd16246bb74817be Mon Sep 17 00:00:00 2001 From: David Cermak Date: Tue, 29 Jun 2021 16:15:20 +0200 Subject: [PATCH] CI: esp_err_t check: Ignore esp32_mock.h per mdns mock update --- tools/gen_esp_err_to_name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gen_esp_err_to_name.py b/tools/gen_esp_err_to_name.py index cd9ba8a041..e6a6b57fc0 100755 --- a/tools/gen_esp_err_to_name.py +++ b/tools/gen_esp_err_to_name.py @@ -39,7 +39,7 @@ import textwrap from io import open # list files here which should not be parsed -ignore_files = [os.path.join('components', 'mdns', 'test_afl_fuzz_host', 'esp32_compat.h'), +ignore_files = [os.path.join('components', 'mdns', 'test_afl_fuzz_host', 'esp32_mock.h'), # tcpip_adapter in compatibility mode from 4.1 (errors reused in esp-netif) os.path.join('components', 'tcpip_adapter', 'include', 'tcpip_adapter_types.h') ]