[clang-tools-extra] r215179 - Suppress clang-tools-extra/test/clang-tidy/llvm-include-order.cpp for targeting msvc. Investigating.
NAKAMURA Takumi
geek4civic at gmail.com
Thu Aug 7 19:01:42 PDT 2014
Author: chapuni
Date: Thu Aug 7 21:01:42 2014
New Revision: 215179
URL: http://llvm.org/viewvc/llvm-project?rev=215179&view=rev
Log:
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>
Modified:
clang-tools-extra/trunk/test/clang-tidy/llvm-include-order.cpp
Modified: clang-tools-extra/trunk/test/clang-tidy/llvm-include-order.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/llvm-include-order.cpp?rev=215179&r1=215178&r2=215179&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/llvm-include-order.cpp (original)
+++ clang-tools-extra/trunk/test/clang-tidy/llvm-include-order.cpp Thu Aug 7 21:01:42 2014
@@ -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"
More information about the cfe-commits
mailing list