diff options
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
| -rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 62534c6fbae..009df106e4d 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -4928,6 +4928,11 @@ TEST_F(FormatTest, HandlesIncludeDirectives) {    // Protocol buffer definition or missing "#".    verifyFormat("import \"aaaaaaaaaaaaaaaaa/aaaaaaaaaaaaaaa\";",                 getLLVMStyleWithColumns(30)); + +  FormatStyle Style = getLLVMStyle(); +  Style.AlwaysBreakBeforeMultilineStrings = true; +  Style.ColumnLimit = 0; +  verifyFormat("#import \"abc.h\"", Style);  }  //===----------------------------------------------------------------------===// | 

