From ecd4a60dd550c585278091123251d66bb98a6b06 Mon Sep 17 00:00:00 2001 From: Yanfei Guo Date: Fri, 26 Sep 2025 21:59:24 -0500 Subject: [PATCH] Update coding style checker skip list --- doc/wiki/source_code/Coding_Style_Checker.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/wiki/source_code/Coding_Style_Checker.md b/doc/wiki/source_code/Coding_Style_Checker.md index 071bcfb6e73..400eb04543f 100644 --- a/doc/wiki/source_code/Coding_Style_Checker.md +++ b/doc/wiki/source_code/Coding_Style_Checker.md @@ -11,7 +11,7 @@ The style checker is run every night by the script ``` /home/gropp/projects/software/buildsys/src/codingcheck -conf=mpich2 \ - -skipfiles=src/mpid/globus,src/mpe2,src/pm/smpd,src/pm/ompd,src/pm/forker,src/mpid/mm,src/mpid/rdma,src/pm/mpd/examples,src/mpid/ch3/channels/rdma,src/mpid/dcmfd \ + -skipfiles=src/mpi/romio,src/pm/hydra \ -checktest src examples test ``` @@ -26,7 +26,11 @@ The options have the following meanings: directory, skip the directory and all of its members. This is used to skip directories from other projects that have their own (we hope) style guidelines and directories that are deprecated but still - present in the source tree. + present in the source tree. Currently this list contains + `src/mpi/romio` (the bundled ROMIO MPI-IO library) and + `src/pm/hydra` (the Hydra process manager), each of which is + maintained as its own subproject with a distinct history and code + conventions. \-checktest: Apply the style checks to files in directories with a parent directory of test. This applies the style checks to the MPICH2 test programs.