diff options
author | Daniel Jasper <djasper@google.com> | 2013-08-13 08:29:26 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-08-13 08:29:26 +0000 |
commit | 70dc91aaf15ac676101eab5eb3dba1a0eda6bf2d (patch) | |
tree | 18d3d836b96616ed9412d787672b2cd25e0082d5 | |
parent | b59d82ac6690f078791ee800cbb58df11c6cf56e (diff) | |
download | bcm5719-llvm-70dc91aaf15ac676101eab5eb3dba1a0eda6bf2d.tar.gz bcm5719-llvm-70dc91aaf15ac676101eab5eb3dba1a0eda6bf2d.zip |
clang-format: Activate WebKit-style tests for MS compilers.
They were accidentally placed in the #if.
llvm-svn: 188255
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 71f9dabc8a5..6cea8a332ad 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -5787,6 +5787,8 @@ TEST_F(FormatTest, SplitsUTF8BlockComments) { format("/* 𝓣𝓮𝓼𝓽 𝔣𝔬𝔲𝔯 𝕓𝕪𝕥𝕖 𝖀𝕿𝕱-𝟠 */", getLLVMStyleWithColumns(12))); } +#endif + TEST_F(FormatTest, FormatsWithWebKitStyle) { FormatStyle Style = getWebKitStyle(); @@ -5866,7 +5868,5 @@ TEST_F(FormatTest, FormatsWithWebKitStyle) { format("if (aaaaaaaaaaaaaaa || bbbbbbbbbbbbbbb) { i++; }", Style)); } -#endif - } // end namespace tooling } // end namespace clang |