From 9d09fe015102172194458dc29c63c6e5f66dc83d Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 16 Aug 2017 12:28:49 -0700 Subject: [PATCH] nmcheck_prefix: more updates for more compilers Ignore a few more symbols to pass Absoft and modern gcc. Signed-off-by: Jeff Squyres --- test/symbol_name/nmcheck_prefix.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/symbol_name/nmcheck_prefix.pl b/test/symbol_name/nmcheck_prefix.pl index 8b12670d6d..8c8e627ca3 100755 --- a/test/symbol_name/nmcheck_prefix.pl +++ b/test/symbol_name/nmcheck_prefix.pl @@ -117,8 +117,9 @@ sub check_lib_for_bad_exports { # [error] _Cmpi_fortran_status_ignore # [error] _Cmpi_fortran_statuses_ignore # which we shouldn't identify as bad: - @symbols = grep(!/^MPI$/, @symbols); - @symbols = grep(!/^_Cmpi_$/, @symbols); + @symbols = grep(!/^MPI$/i, @symbols); + @symbols = grep(!/^_Cmpi_/, @symbols); + @symbols = grep(!/^mpi._$/i, @symbols); @symbols = grep(!/^_fini$/, @symbols); @symbols = grep(!/^_init$/, @symbols);