// RUN: rm -rf %T/Headers // RUN: mkdir %T/Headers // RUN: cp -r %S/Inputs/fuchsia-restrict-system-includes %T/Headers/fuchsia-restrict-system-includes // RUN: %check_clang_tidy %s fuchsia-restrict-system-includes %t \ // RUN: -- -config="{CheckOptions: [{key: fuchsia-restrict-system-includes.Includes, value: 'transitive.h,s.h'}]}" \ // RUN: -system-headers -header-filter=.* \ // RUN: -- -std=c++11 -I %T/Headers/fuchsia-restrict-system-includes -isystem %T/Headers/fuchsia-restrict-system-includes/system // RUN: FileCheck -input-file=%T/Headers/fuchsia-restrict-system-includes/transitive2.h %s -check-prefix=CHECK-FIXES // RUN: rm -rf %T/Headers // transitive.h includes and #include // CHECK-MESSAGES: :1:1: warning: system include r.h not allowed, transitively included from {{.*}} // CHECK-MESSAGES: :2:1: warning: system include t.h not allowed, transitively included from {{.*}} // transitive.h includes and #include "transitive2.h" // CHECK-MESSAGES: :2:1: warning: system include t.h not allowed, transitively included from {{.*}} // CHECK-FIXES-NOT: #include int main() { // f() is declared in r.h }