brintos

brintos / llvm-project-archived public Read only

0
0
Text · 524 B · 21b685e Raw
12 lines · cpp
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/system4 5// Test allow-list functionality: disallow all but stddef.h.6 7#include <stddef.h>8#include <stdint.h>9// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include stdint.h not allowed10#include <float.h>11// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: system include float.h not allowed12