[llvm] [llvm][ADT] Add `getSingleElement` helper (PR #131508)
Matthias Springer via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 16 12:35:13 PDT 2025
================
@@ -1043,6 +1040,14 @@ TEST(STLExtrasTest, getSingleElement) {
some_namespace::some_struct S;
S.data = V2;
EXPECT_EQ(getSingleElement(S), 8);
+
+ // Make sure that we crash on empty or too many elements.
+ SmallVector<int> V4;
+ EXPECT_DEATH(getSingleElement(V4), "expected container with single element");
+ SmallVector<int> V5{12, 13, 14};
+ EXPECT_DEATH(getSingleElement(V5), "expected container with single element");
+ std::list<int> L2;
+ EXPECT_DEATH(getSingleElement(L2), "expected container with single element");
----------------
matthias-springer wrote:
I'm seeing a mixture of
```c++
#if defined(GTEST_HAS_DEATH_TEST) && !defined(NDEBUG)
...
#endif
```
and
```c++
#if LLVM_ENABLE_ABI_BREAKING_CHECKS
#ifndef NDEBUG
...
#endif
#endif
```
Let's see if the CI is happy with the former...
https://github.com/llvm/llvm-project/pull/131508
More information about the llvm-commits
mailing list