From 96d4bb6ac2682d9608c4d3a93c453692372b79f9 Mon Sep 17 00:00:00 2001 From: Ben Walker Date: Fri, 24 Jun 2022 09:12:03 -0700 Subject: [PATCH] check_format: Re-enable naming convention check This was temporarily disabled to work around a big style fix patch. It can be enabled again now. Change-Id: I9009d83798551545307cf5881bc1bbb87453e611 Signed-off-by: Ben Walker Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13466 Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Dong Yi Reviewed-by: Tomasz Zawadzki --- 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 f2cf75273..3e624a1d5 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