diff options
author | Julie Hockett <juliehockett@google.com> | 2018-05-11 22:58:45 +0000 |
---|---|---|
committer | Julie Hockett <juliehockett@google.com> | 2018-05-11 22:58:45 +0000 |
commit | 65631a7c13c63d3a94a7da4092d899ec18d7b4ef (patch) | |
tree | d718ed7f85366901b1c2a635adba0bacc8baff5b /clang-tools-extra/test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp | |
parent | 69c9cd277dfa2e1d89c7c09d59ea2d846a98b7e8 (diff) | |
download | bcm5719-llvm-65631a7c13c63d3a94a7da4092d899ec18d7b4ef.tar.gz bcm5719-llvm-65631a7c13c63d3a94a7da4092d899ec18d7b4ef.zip |
[clang-tidy] Fixing fuchsia-restrict-includes-headers test
Removing filepaths so windows tests pass.
llvm-svn: 332152
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp b/clang-tools-extra/test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp index 58ba47a70ee..f392eacc9a9 100644 --- a/clang-tools-extra/test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp +++ b/clang-tools-extra/test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp @@ -10,12 +10,12 @@ // transitive.h includes <r.h> and <t.h> #include <transitive.h> -// CHECK-MESSAGES: :1:1: warning: system include r.h not allowed, transitively included from {{(.*\/)*}}Headers/fuchsia-restrict-system-includes/system/transitive.h -// CHECK-MESSAGES: :2:1: warning: system include t.h not allowed, transitively included from {{(.*\/)*}}Headers/fuchsia-restrict-system-includes/system/transitive.h +// 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 <s.h> and <t.h> #include "transitive2.h" -// CHECK-MESSAGES: :2:1: warning: system include t.h not allowed, transitively included from {{(.*\/)*}}Headers/fuchsia-restrict-system-includes/transitive2.h +// CHECK-MESSAGES: :2:1: warning: system include t.h not allowed, transitively included from {{.*}} // CHECK-FIXES-NOT: #include <t.h> int main() { |