r188255 - clang-format: Activate WebKit-style tests for MS compilers.
Daniel Jasper
djasper at google.com
Tue Aug 13 01:29:27 PDT 2013
Author: djasper
Date: Tue Aug 13 03:29:26 2013
New Revision: 188255
URL: http://llvm.org/viewvc/llvm-project?rev=188255&view=rev
Log:
clang-format: Activate WebKit-style tests for MS compilers.
They were accidentally placed in the #if.
Modified:
cfe/trunk/unittests/Format/FormatTest.cpp
Modified: cfe/trunk/unittests/Format/FormatTest.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/Format/FormatTest.cpp?rev=188255&r1=188254&r2=188255&view=diff
==============================================================================
--- cfe/trunk/unittests/Format/FormatTest.cpp (original)
+++ cfe/trunk/unittests/Format/FormatTest.cpp Tue Aug 13 03:29:26 2013
@@ -5787,6 +5787,8 @@ TEST_F(FormatTest, SplitsUTF8BlockCommen
format("/* ð£ð®ð¼ð½ ð£ð¬ð²ð¯ ððªð¥ð ðð¿ð±-ð */", getLLVMStyleWithColumns(12)));
}
+#endif
+
TEST_F(FormatTest, FormatsWithWebKitStyle) {
FormatStyle Style = getWebKitStyle();
@@ -5866,7 +5868,5 @@ TEST_F(FormatTest, FormatsWithWebKitStyl
format("if (aaaaaaaaaaaaaaa || bbbbbbbbbbbbbbb) { i++; }", Style));
}
-#endif
-
} // end namespace tooling
} // end namespace clang
More information about the cfe-commits
mailing list