diff options
| author | karina-usm <[email protected]> | 2022-02-10 16:48:05 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:05 +0300 | 
| commit | 3305cedaf9e392ab24e4b7dd6072976748ce60bf (patch) | |
| tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/regex | |
| parent | 62517661cde7aa7c93efe0281ec48eeb70ea420c (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/regex')
| -rw-r--r-- | library/cpp/regex/pire/ut/regexp_ut.cpp | 10 | ||||
| -rw-r--r-- | library/cpp/regex/pire/ut/ya.make | 4 | ||||
| -rw-r--r-- | library/cpp/regex/pire/ya.make | 4 | 
3 files changed, 9 insertions, 9 deletions
| diff --git a/library/cpp/regex/pire/ut/regexp_ut.cpp b/library/cpp/regex/pire/ut/regexp_ut.cpp index fd7ac68a2cf..e7206de9ad4 100644 --- a/library/cpp/regex/pire/ut/regexp_ut.cpp +++ b/library/cpp/regex/pire/ut/regexp_ut.cpp @@ -37,11 +37,11 @@ Y_UNIT_TEST_SUITE(TRegExp) {          UNIT_ASSERT(!TMatcher(TFsm("qw", TFsm::TOptions().SetCaseInsensitive(false))).Match("Qw").Final());      } -    Y_UNIT_TEST(UnicodeCase) {  -        UNIT_ASSERT(TMatcher(TFsm("\\x{61}\\x{62}", TFsm::TOptions().SetCaseInsensitive(true))).Match("Ab").Final());  -        UNIT_ASSERT(!TMatcher(TFsm("\\x{61}\\x{62}", TFsm::TOptions().SetCaseInsensitive(false))).Match("Ab").Final());  -    }  -  +    Y_UNIT_TEST(UnicodeCase) { +        UNIT_ASSERT(TMatcher(TFsm("\\x{61}\\x{62}", TFsm::TOptions().SetCaseInsensitive(true))).Match("Ab").Final()); +        UNIT_ASSERT(!TMatcher(TFsm("\\x{61}\\x{62}", TFsm::TOptions().SetCaseInsensitive(false))).Match("Ab").Final()); +    } +      Y_UNIT_TEST(Utf) {          NRegExp::TFsmBase::TOptions opts;          opts.Charset = CODES_UTF8; diff --git a/library/cpp/regex/pire/ut/ya.make b/library/cpp/regex/pire/ut/ya.make index bf068415862..8776695f405 100644 --- a/library/cpp/regex/pire/ut/ya.make +++ b/library/cpp/regex/pire/ut/ya.make @@ -30,9 +30,9 @@ SRCS(      count_ut.cpp      glyph_ut.cpp      easy_ut.cpp -    read_unicode_ut.cpp  +    read_unicode_ut.cpp      regexp_ut.cpp -    approx_matching_ut.cpp  +    approx_matching_ut.cpp  )  SIZE(MEDIUM) diff --git a/library/cpp/regex/pire/ya.make b/library/cpp/regex/pire/ya.make index 88afde3c61d..c857e6d18bc 100644 --- a/library/cpp/regex/pire/ya.make +++ b/library/cpp/regex/pire/ya.make @@ -24,9 +24,9 @@ SRCS(      extra/glyphs.cpp      re_lexer.cpp      re_parser.y -    read_unicode.cpp  +    read_unicode.cpp      extraencodings.cpp -    approx_matching.cpp  +    approx_matching.cpp      half_final_fsm.cpp      minimize.h  ) | 
