diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-08-08 02:01:42 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-08-08 02:01:42 +0000 |
commit | 274a845e0093525c7b9ad76999b09f470bce2696 (patch) | |
tree | a456e930aa5ee6e93f3011b5e6b2152484703794 /clang-tools-extra/test/clang-tidy/llvm-include-order.cpp | |
parent | 0c2b9d2a1cc5584e18298b15d9fd41a48c504ab7 (diff) | |
download | bcm5719-llvm-274a845e0093525c7b9ad76999b09f470bce2696.tar.gz bcm5719-llvm-274a845e0093525c7b9ad76999b09f470bce2696.zip |
Suppress clang-tools-extra/test/clang-tidy/llvm-include-order.cpp for targeting msvc. Investigating.
FYI, I can see the order;
#include "j.h"
#include "i.h"
#include "clang-c/c.h" // hi
#include "clang/b.h"
#include "llvm-c/d.h" // -c
#include "llvm/a.h"
#include "gtest/foo.h"
#include <s.h>
llvm-svn: 215179
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/llvm-include-order.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/llvm-include-order.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-tidy/llvm-include-order.cpp b/clang-tools-extra/test/clang-tidy/llvm-include-order.cpp index 8311e3a3532..ea1f8d76487 100644 --- a/clang-tools-extra/test/clang-tidy/llvm-include-order.cpp +++ b/clang-tools-extra/test/clang-tidy/llvm-include-order.cpp @@ -1,6 +1,9 @@ // RUN: $(dirname %s)/check_clang_tidy_fix.sh %s llvm-include-order %t -isystem %S/Inputs/Headers // REQUIRES: shell +// FIXME: Investigating. +// XFAIL: win32 + // CHECK-MESSAGES: [[@LINE+2]]:1: warning: #includes are not sorted properly #include "j.h" #include "gtest/foo.h" |