From add60da95b7b8fe9c2ece6b10ab7cacebd95f7e1 Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Wed, 7 Apr 2021 14:45:36 +0100 Subject: [PATCH] Scan library for enums in list-enum-consts.sh Add library/*.h to the list of files scanned for enums in list-enum-consts.sh, consistent with the changes made to list-macros.sh. This is needed to ensure that check-names.sh passes for the MPS trace enums. Signed-off-by: Dave Rodgman --- tests/scripts/list-enum-consts.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/list-enum-consts.pl b/tests/scripts/list-enum-consts.pl index 3d8df103b..88a062e71 100755 --- a/tests/scripts/list-enum-consts.pl +++ b/tests/scripts/list-enum-consts.pl @@ -26,7 +26,7 @@ use open qw(:std utf8); @ARGV = grep { ! /compat-1\.3\.h/ } ; push @ARGV, "3rdparty/everest/include/everest/everest.h"; push @ARGV, "3rdparty/everest/include/everest/x25519.h"; - +push @ARGV, glob("library/*.h"); my @consts; my $state = 'out';