diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-15 18:20:58 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-15 18:20:58 +0300 |
commit | 2d9dc043c662c86787d835ec189b2c9da1578071 (patch) | |
tree | ae60a51d0f26ce3f05f64e44626f467b583199d8 /library/cpp/testing/unittest/registar.cpp | |
parent | 457c97d555bfbe3f9351eb22a932b9965e6816a6 (diff) | |
download | ydb-2d9dc043c662c86787d835ec189b2c9da1578071.tar.gz |
intermediate changes
ref:f793e47d98757e96c541d6d7dd53f8838e72cf3f
Diffstat (limited to 'library/cpp/testing/unittest/registar.cpp')
-rw-r--r-- | library/cpp/testing/unittest/registar.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/cpp/testing/unittest/registar.cpp b/library/cpp/testing/unittest/registar.cpp index 3679b768ed..9377114575 100644 --- a/library/cpp/testing/unittest/registar.cpp +++ b/library/cpp/testing/unittest/registar.cpp @@ -13,7 +13,6 @@ #include <util/string/cast.h> bool NUnitTest::ShouldColorizeDiff = true; -bool NUnitTest::ContinueOnFail = false; TString NUnitTest::RandomString(size_t len, ui32 seed) { TReallyFastRng32 rand(seed); @@ -47,7 +46,7 @@ void ::NUnitTest::NPrivate::RaiseError(const char* what, const TString& msg, boo TBackTrace bt; bt.Capture(); GetCurrentTest()->AddError(msg.data(), bt.PrintToString()); - if (::NUnitTest::ContinueOnFail || !fatalFailure) { + if (!fatalFailure) { return; } throw TAssertException(); |