From: Jonathan Wakely Date: Fri, 28 Feb 2020 17:05:45 +0000 (+0000) Subject: libstdc++: test for failing assertion should use 'run' not 'compile' X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4735f92d48c373031be296fd0f7a2cf31fc955da;p=gcc.git libstdc++: test for failing assertion should use 'run' not 'compile' And it only needs to define _GLIBCXX_ASSERTIONS not _GLIBCXX_DEBUG. * testsuite/24_iterators/range_operations/advance_debug_neg.cc: Run test instead of just compiling it. --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0feef87cce6..98eaff92fd1 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2020-02-28 Jonathan Wakely + + * testsuite/24_iterators/range_operations/advance_debug_neg.cc: Run + test instead of just compiling it. + 2020-02-28 Patrick Palka * include/std/ranges (reverse_view::_S_needs_cached_begin): Set to false diff --git a/libstdc++-v3/testsuite/24_iterators/range_operations/advance_debug_neg.cc b/libstdc++-v3/testsuite/24_iterators/range_operations/advance_debug_neg.cc index ffda650fb0a..7a1ef97df14 100644 --- a/libstdc++-v3/testsuite/24_iterators/range_operations/advance_debug_neg.cc +++ b/libstdc++-v3/testsuite/24_iterators/range_operations/advance_debug_neg.cc @@ -15,8 +15,9 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-std=gnu++2a -D_GLIBCXX_DEBUG" } -// { dg-do compile { xfail c++2a } } +// { dg-options "-std=gnu++2a -D_GLIBCXX_ASSERTIONS" } +// { dg-do run { xfail *-*-* } } +// { dg-require-effective-target c++2a } #include #include @@ -29,3 +30,8 @@ test01() auto iter = c.begin(); std::ranges::advance(iter, -1); } + +int main() +{ + test01(); +}