diff options
author | yazevnul <yazevnul@yandex-team.ru> | 2022-02-10 16:46:48 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:48 +0300 |
commit | 9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /contrib/libs/libunwind | |
parent | 8cbc307de0221f84c80c42dcbe07d40727537e2c (diff) | |
download | ydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz |
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/libunwind')
-rw-r--r-- | contrib/libs/libunwind/ut/libunwind_ut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libs/libunwind/ut/libunwind_ut.cpp b/contrib/libs/libunwind/ut/libunwind_ut.cpp index 3e199d4210..93767c50c8 100644 --- a/contrib/libs/libunwind/ut/libunwind_ut.cpp +++ b/contrib/libs/libunwind/ut/libunwind_ut.cpp @@ -10,14 +10,14 @@ Y_NO_INLINE void Except(int arg, ...) { throw std::exception(); } -Y_UNIT_TEST_SUITE(LibunwindSuite) { +Y_UNIT_TEST_SUITE(LibunwindSuite) { static void Y_NO_INLINE DoTestVarargs() { std::vector<int> v; v.push_back(0); Except(0x11, 0x22, 0x33, 0x44, 0xAA, 0xBB, 0xCC, 0xDD); } - Y_UNIT_TEST(TestVarargs) { + Y_UNIT_TEST(TestVarargs) { try { DoTestVarargs(); } catch (const std::exception& e) { |