diff options
Diffstat (limited to 'clang/unittests')
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index f2ac3ba94fb..b6574c7503a 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -6911,6 +6911,14 @@ TEST_F(FormatTest, WorksFor8bitEncodings) { getLLVMStyleWithColumns(12))); } +TEST_F(FormatTest, HandlesUTF8BOM) { + EXPECT_EQ("\xef\xbb\xbf", format("\xef\xbb\xbf")); + EXPECT_EQ("\xef\xbb\xbf#include <iostream>", + format("\xef\xbb\xbf#include <iostream>")); + EXPECT_EQ("\xef\xbb\xbf\n#include <iostream>", + format("\xef\xbb\xbf\n#include <iostream>")); +} + // FIXME: Encode Cyrillic and CJK characters below to appease MS compilers. #if !defined(_MSC_VER) |