Lines Matching full:header

1 // RUN: rm -rf %T/misc-header-include-cycle-headers
2 // RUN: mkdir %T/misc-header-include-cycle-headers
3 // RUN: cp -r %S/Inputs/header-include-cycle* %T/misc-header-include-cycle-headers/
4 // RUN: mkdir %T/misc-header-include-cycle-headers/system
5 // RUN: cp -r %S/Inputs/system/header-include-cycle* %T/misc-header-include-cycle-headers/system
6 // RUN: cp %s %T/header-include-cycle.cpp
7 // RUN: clang-tidy %T%{fs-sep}header-include-cycle.cpp -checks='-*,misc-header-include-cycle' -head…
8 // RUN: -config="{CheckOptions: {misc-header-include-cycle.IgnoredFilesList: 'header-include-cycle.…
9 // RUN: -- -I%T%{fs-sep}misc-header-include-cycle-headers -isystem %T%{fs-sep}misc-header-include-c…
10 // RUN: --include %T%{fs-sep}misc-header-include-cycle-headers%{fs-sep}header-include-cycle.self-i.…
12 // RUN: rm -rf %T/misc-header-include-cycle-headers
17 #include "header-include-cycle.cpp"
18 …:[[@LINE-1]]:10: warning: direct self-inclusion of header file 'header-include-cycle.cpp' [misc-he…
20 #include <header-include-cycle.first-d.hpp>
21header-include-cycle.fourth-d.hpp:3:10: warning: circular header file dependency detected while in…
22 // CHECK-MESSAGES: header-include-cycle.third-d.hpp:3:10: note: 'header-include-cycle.fourth-d.hpp'…
23 // CHECK-MESSAGES: header-include-cycle.second-d.hpp:3:10: note: 'header-include-cycle.third-d.hpp'…
24 // CHECK-MESSAGES: header-include-cycle.first-d.hpp:3:10: note: 'header-include-cycle.second-d.hpp'…
25 // CHECK-MESSAGES: :[[@LINE-5]]:10: note: 'header-include-cycle.first-d.hpp' included from here
27 #include <header-include-cycle.first.hpp>
28header-include-cycle.fourth.hpp:2:10: warning: circular header file dependency detected while incl…
29 // CHECK-MESSAGES: header-include-cycle.third.hpp:2:10: note: 'header-include-cycle.fourth.hpp' inc…
30 // CHECK-MESSAGES: header-include-cycle.second.hpp:2:10: note: 'header-include-cycle.third.hpp' inc…
31 // CHECK-MESSAGES: header-include-cycle.first.hpp:2:10: note: 'header-include-cycle.second.hpp' inc…
32 // CHECK-MESSAGES: :[[@LINE-5]]:10: note: 'header-include-cycle.first.hpp' included from here
34 #include <header-include-cycle.self-d.hpp>
35 …-MESSAGES: header-include-cycle.self-d.hpp:3:10: warning: direct self-inclusion of header file 'he…
37 …-MESSAGES: header-include-cycle.self-i.hpp:2:10: warning: direct self-inclusion of header file 'he…
39 #include <header-include-cycle.self-o.hpp>
40 …-MESSAGES: header-include-cycle.self-n.hpp:2:10: warning: direct self-inclusion of header file 'he…
42 #include <header-include-cycle.self.hpp>
43 …CK-MESSAGES: header-include-cycle.self.hpp:2:10: warning: direct self-inclusion of header file 'he…
46 #include <header-include-cycle.first.hpp>
47 #include <header-include-cycle.first-d.hpp>
48 #include <header-include-cycle.self.hpp>
49 #include <header-include-cycle.self-d.hpp>
50 #include <header-include-cycle.self-o.hpp>
51 #include <header-include-cycle.self-n.hpp>
54 #include <header-include-cycle.first-s.hpp>
55 #include <header-include-cycle.self-s.hpp>
57 // Should not warn about this excluded header
58 #include <header-include-cycle.self-e.hpp>