1// RUN: %check_clang_tidy %s portability-restrict-system-includes %t \
2// RUN: -- -config="{CheckOptions: {portability-restrict-system-includes.Includes: '*,-stddef.h'}}" \
3// RUN: -- -isystem %S/Inputs/restrict-system-includes/system
4
5// Test block-list functionality: allow all but stddef.h.
6
7#include <stddef.h>
8// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include stddef.h not allowed
9#include <stdint.h>
10#include <float.h>
11

source code of clang-tools-extra/test/clang-tidy/checkers/portability/restrict-system-includes-allow.cpp