The patch extends the existing command line option -check-suffix (with alias -check-suffixes) to accept multiple comma-separated prefixes.
// RUN: %check_clang_tidy -check-suffix=USING-C,USING-D %s misc-unused-using-decls %t -- -- ...
or for the same
// RUN: %check_clang_tidy -check-suffixes=USING-C,USING-D %s misc-unused-using-decls %t -- -- ...
Maybe -check-suffixes to make it more obvious that multiple values are supported?