From 8620c9a0d1c79e5ef07fd93102eec923d95e03fb Mon Sep 17 00:00:00 2001 From: Ben Walker Date: Fri, 24 Jun 2022 09:10:05 -0700 Subject: [PATCH] check_format: Temporarily disable naming convention check This check isn't smart enough to handle the next big formatting patch, so disable it and then re-enable later. Change-Id: I2d73598d6b7c43f9356562161ed116bc01361166 Signed-off-by: Ben Walker Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13465 Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Dong Yi Reviewed-by: Tomasz Zawadzki Community-CI: Broadcom CI --- scripts/check_format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_format.sh b/scripts/check_format.sh index c2f68fa20..6b20f7eae 100755 --- a/scripts/check_format.sh +++ b/scripts/check_format.sh @@ -682,7 +682,7 @@ check_forbidden_functions || rc=1 check_cunit_style || rc=1 check_eof || rc=1 check_posix_includes || rc=1 -check_naming_conventions || rc=1 +#check_naming_conventions || rc=1 check_include_style || rc=1 check_python_style || rc=1 check_bash_style || rc=1