From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x429.google.com (mail-wr1-x429.google.com [IPv6:2a00:1450:4864:20::429]) by sourceware.org (Postfix) with ESMTPS id B41A8385840D; Sun, 8 Aug 2021 20:54:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B41A8385840D Received: by mail-wr1-x429.google.com with SMTP id c9so18621168wri.8; Sun, 08 Aug 2021 13:54:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=+42q0BP6bkba9wExN0fbMiHsypNEHblMIiG8jpCEwlE=; b=GMUxb5pXjC0JkKGJxTqIRLFaAGnk2fpjVwVahuLQG2TJ+CtMGNDS/PZdR1CE98gqqQ BfvJIMjDtWmTkmt1rkgtSD+3kgvnTmM/p4f0niTvZhhl2tPFGQV7bO539uQVqTIZ7yO9 0Of9qYwoj/dqNHkoTZfjPA8fgZOXQ4NSQ1PaPGUONGc3QahJ0g4Nsc1ffkIS8jaskx5N NMkdQKxT49mUJaK13wSXtc4S9oOqoGDrcJNDyovG+ZblLs0ZLHE3PDBRp0lmfSLZhpAm 71Wd7rWvnsZu3EhhEE/+EDF2d1REvet52ceC8N4oB/HqxGHx5c7Cil52S2qxd+M7xpkV iuSg== X-Gm-Message-State: AOAM532x0bZMbB3SbjJwCylkUN66IvP65vwMzwYVJj4wEx4ONWyIadhw sdP6o3PuZUxvKDCbvtV3jrxmfWrTsoPzVrgZ0qcj5P+V X-Google-Smtp-Source: ABdhPJwUiTsVRyzJuj3h30BqBjeclMCEP0zL1qQwPDb1Sb8Xa0D4kKWxAoW2mtvo7hzrUFnLFPKGzwjTZv0Jh1Cr4YM= X-Received: by 2002:adf:ed0a:: with SMTP id a10mr21644289wro.30.1628456063908; Sun, 08 Aug 2021 13:54:23 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Jonathan Wakely Date: Sun, 8 Aug 2021 21:54:09 +0100 Message-ID: Subject: Re: [committed] Fix dg-prune-output To: =?UTF-8?Q?Fran=C3=A7ois_Dumont?= Cc: "libstdc++" , gcc-patches X-Spam-Status: No, score=-1.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2021 20:54:26 -0000 On Sun, 8 Aug 2021, 20:26 Fran=C3=A7ois Dumont via Libstdc++, < libstdc++@gcc.gnu.org> wrote: > This is a trivial fix following a recent change on __glibcxx_assert. > > libstdc++: Fix dg-prune-output assertion message > > Since __glibcxx_assert changes in r6b42b5a the generated assertion > message > has changed. > Ah yes, thanks for fixing this. > libstdc++-v3/ChangeLog: > > * testsuite/25_algorithms/copy/debug/constexpr_neg.cc: > Replace 'failed_assertion' > dg-prune-output reason with 'builtin_unreachable'. > * > testsuite/25_algorithms/copy_backward/debug/constexpr_neg.cc: Likewise. > * testsuite/25_algorithms/equal/debug/constexpr_neg.cc: > Likewise. > * > testsuite/25_algorithms/lower_bound/debug/constexpr_partitioned_neg.cc: > Likewise. > * > testsuite/25_algorithms/lower_bound/debug/constexpr_partitioned_pred_neg.= cc: > > Likewise. > * > testsuite/25_algorithms/lower_bound/debug/constexpr_valid_range_neg.cc: > Likewise. > * > testsuite/25_algorithms/upper_bound/debug/constexpr_partitioned_neg.cc: > Likewise. > * > testsuite/25_algorithms/upper_bound/debug/constexpr_partitioned_pred_neg.= cc: > > Likewise. > * > testsuite/25_algorithms/upper_bound/debug/constexpr_valid_range_neg.cc: > Likewise. > > Fran=C3=A7ois > >