diff options
-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() { |