diff options
author | aosipenko <aosipenko@yandex-team.ru> | 2022-02-10 16:48:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:08 +0300 |
commit | 69e3c43df1c96bc2ac8946bf4dfb1f5fc438ff7f (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /util/stream/ios_ut.cpp | |
parent | 948fd24d47d4b3b7815aaef1686aea00ef3f4288 (diff) | |
download | ydb-69e3c43df1c96bc2ac8946bf4dfb1f5fc438ff7f.tar.gz |
Restoring authorship annotation for <aosipenko@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/stream/ios_ut.cpp')
-rw-r--r-- | util/stream/ios_ut.cpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/util/stream/ios_ut.cpp b/util/stream/ios_ut.cpp index 9fd05ebd87..139f4296e5 100644 --- a/util/stream/ios_ut.cpp +++ b/util/stream/ios_ut.cpp @@ -304,32 +304,32 @@ namespace { size_t Index_; }; - const char Text[] = + const char Text[] = // UTF8 encoded "one \ntwo\r\nthree\n\tfour\nfive\n" in russian and ... - "один \n" - "два\r\n" - "три\n" - "\tчетыре\n" - "пять\n" + "один \n" + "два\r\n" + "три\n" + "\tчетыре\n" + "пять\n" // ... additional test cases - "\r\n" - "\n\r" // this char goes to the front of the next string - "one two\n" - "123\r\n" - "\t\r "; + "\r\n" + "\n\r" // this char goes to the front of the next string + "one two\n" + "123\r\n" + "\t\r "; - const char* Expected[] = { + const char* Expected[] = { // UTF8 encoded "one ", "two", "three", "\tfour", "five" in russian and ... - "один ", - "два", - "три", - "\tчетыре", - "пять", + "один ", + "два", + "три", + "\tчетыре", + "пять", // ... additional test cases - "", - "", - "\rone two", - "123", + "", + "", + "\rone two", + "123", "\t\r "}; void TestStreamReadTo1(IInputStream& input, const char* comment) { TString tmp; |