From patchwork Thu Jul 4 12:59:47 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Maciej W. Rozycki" X-Patchwork-Id: 1956882 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=server2.sourceware.org; envelope-from=libc-alpha-bounces~incoming=patchwork.ozlabs.org@sourceware.org; receiver=patchwork.ozlabs.org) Received: from server2.sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4WFGvw5qQPz1xqq for ; Thu, 4 Jul 2024 23:00:12 +1000 (AEST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 0BC78384A476 for ; Thu, 4 Jul 2024 13:00:11 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from angie.orcam.me.uk (angie.orcam.me.uk [78.133.224.34]) by sourceware.org (Postfix) with ESMTP id 2CD5A384A443 for ; Thu, 4 Jul 2024 12:59:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 2CD5A384A443 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=orcam.me.uk Authentication-Results: sourceware.org; spf=none smtp.mailfrom=orcam.me.uk ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 2CD5A384A443 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=78.133.224.34 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1720097989; cv=none; b=Uq/B0lzbYaWUn/3FyggB6D7qyergRsHsyM7AnKw65IjHf0J46GBnEiWLsIk3aA07rTTb6A/+YKbhP7jXP80DRjshtrW5hA+9uWR2HDR6XTtKwaQrdiqc/5FpZaqT+XqsAsnv4mciCI1ChX8aN6mS6McRyJyeHw4sKBJS9lkPTDg= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1720097989; c=relaxed/simple; bh=6VS3mzWLJgJyjAeXmsDcLrz8iHu6bNI6DCxMfQsMDWg=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=hvK4M69+3s6xXpoRdsyiCbZ1k0ZhDsml+sDcoCR1qkI2KIW8DSkBjSpbwWp+e+sh38g3HHjzg1XuwY7Rw11KtqGKxIQRAFfM7pR3SdEgL7V20QLRkyI8WvxTF4Gz7uwvlNpHQh4EYh548vrPoGXi0+TMtVvuncBIwwYG2/YG8i8= ARC-Authentication-Results: i=1; server2.sourceware.org Received: by angie.orcam.me.uk (Postfix, from userid 500) id ACF4B92009C; Thu, 4 Jul 2024 14:59:47 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by angie.orcam.me.uk (Postfix) with ESMTP id A926D92009B; Thu, 4 Jul 2024 13:59:47 +0100 (BST) Date: Thu, 4 Jul 2024 13:59:47 +0100 (BST) From: "Maciej W. Rozycki" To: libc-alpha@sourceware.org cc: "Maciej W. Rozycki" Subject: [PATCH v4 1/2] support: Add FAIL test failure helper In-Reply-To: Message-ID: References: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 X-Spam-Status: No, score=-1163.1 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, KAM_INFOUSMEBIZ, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: "Maciej W. Rozycki" Errors-To: libc-alpha-bounces~incoming=patchwork.ozlabs.org@sourceware.org From: Maciej W. Rozycki Add a FAIL test failure helper analogous to FAIL_RET, that does not cause the current function to return, providing a standardized way to report a test failure with a message supplied while permitting the caller to continue executing, for further reporting, cleaning up, etc. --- No change from v3. New change in v3. --- support/check.h | 5 +++++ 1 file changed, 5 insertions(+) glibc-support-check-fail.diff Index: glibc/support/check.h =================================================================== --- glibc.orig/support/check.h +++ glibc/support/check.h @@ -25,6 +25,11 @@ __BEGIN_DECLS /* Record a test failure, print the failure message to standard output + and pass the result of 1 through. */ +#define FAIL(...) \ + support_print_failure_impl (__FILE__, __LINE__, __VA_ARGS__) + +/* Record a test failure, print the failure message to standard output and return 1. */ #define FAIL_RET(...) \ return support_print_failure_impl (__FILE__, __LINE__, __VA_ARGS__)