blob: a74b94b604ac116852f758c52a6a9ed56ee2c9b2 [file] [log] [blame]
// RUN: %check_clang_tidy %s portability-restrict-system-includes %t \
// RUN: -- -config="{CheckOptions: [{key: portability-restrict-system-includes.Includes, value: '*,-stddef.h'}]}" \
// RUN: -- -isystem %S/Inputs/portability-restrict-system-includes/system
// Test block-list functionality: allow all but stddef.h.
#include <stddef.h>
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include stddef.h not allowed
#include <stdint.h>
#include <float.h>