curdeius updated this revision to Diff 399926. curdeius added a comment. Keep tests only. Clean up. Rebase.
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D99031/new/ https://reviews.llvm.org/D99031 Files: clang/unittests/Format/FormatTest.cpp Index: clang/unittests/Format/FormatTest.cpp =================================================================== --- clang/unittests/Format/FormatTest.cpp +++ clang/unittests/Format/FormatTest.cpp @@ -3824,6 +3824,21 @@ "} // namespace mid\n" "} // namespace out", Style)); + + Style.CompactNamespaces = true; + Style.AllowShortLambdasOnASingleLine = FormatStyle::SLS_None; + Style.BreakBeforeBraces = FormatStyle::BS_Custom; + Style.BraceWrapping.BeforeLambdaBody = true; + verifyFormat("namespace out { namespace in {\n" + "}} // namespace out::in", + Style); + EXPECT_EQ("namespace out { namespace in {\n" + "}} // namespace out::in", + format("namespace out {\n" + "namespace in {\n" + "} // namespace in\n" + "} // namespace out", + Style)); } TEST_F(FormatTest, FormatsExternC) {
Index: clang/unittests/Format/FormatTest.cpp =================================================================== --- clang/unittests/Format/FormatTest.cpp +++ clang/unittests/Format/FormatTest.cpp @@ -3824,6 +3824,21 @@ "} // namespace mid\n" "} // namespace out", Style)); + + Style.CompactNamespaces = true; + Style.AllowShortLambdasOnASingleLine = FormatStyle::SLS_None; + Style.BreakBeforeBraces = FormatStyle::BS_Custom; + Style.BraceWrapping.BeforeLambdaBody = true; + verifyFormat("namespace out { namespace in {\n" + "}} // namespace out::in", + Style); + EXPECT_EQ("namespace out { namespace in {\n" + "}} // namespace out::in", + format("namespace out {\n" + "namespace in {\n" + "} // namespace in\n" + "} // namespace out", + Style)); } TEST_F(FormatTest, FormatsExternC) {
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits