> From: Nathan Myers <[email protected]>
> Date: Thu, 14 May 2026 12:45:44 -0400

The tests *added to an existing test-file* in r17-603-gacfdad706d8acc,
caused a regression for cris-elf, logged as PR 126072.

Specifically, this entry:

> libstdc++-v3/ChangeLog:
>       * testsuite/20_util/allocator/allocate_at_least.cc: Add tests.

And these lines:

> diff --git a/libstdc++-v3/testsuite/20_util/allocator/allocate_at_least.cc 
> b/libstdc++-v3/testsuite/20_util/allocator/allocate_at_least.cc

> +  struct A3 { char s[3]; };
> +  using SatA3 = std::allocator_traits<std::allocator<A3>>;
> +  std::allocator<A3> sata3;
> +  {
> +    auto [p, n] = SatA3::allocate_at_least(sata3, 1);
> +    VERIFY(n == __STDCPP_DEFAULT_NEW_ALIGNMENT__ / sizeof(A3));
> +    SatA3::deallocate(sata3, p, n);
> +  }
> +  {
> +    auto [p, n] = SatA3::allocate_at_least(sata3, 2);
> +    VERIFY(n == __STDCPP_DEFAULT_NEW_ALIGNMENT__ / sizeof(A3));
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

See the PR for more details.

brgds, H-P

Reply via email to