From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 103BF385EC09 for ; Wed, 16 Mar 2022 07:31:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 103BF385EC09 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1647415898; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type:in-reply-to:in-reply-to: references:references; bh=/PEfT2//oJFoe3ancAnHUYOQc+KgbRNl27B00ZeLcQs=; b=E7Orusv8l7o7DhoFXGJfaWGFuT/g7pYihAEPtif9508wgPWkFiXzvpnQAIUFaVHItcQYxu zFRG6BClzI6Tubp9hf2DFqbvh62r5hnmBGl45Slp2A8gomXPxdcOkePoUxEh73HKpOLJXb almKAKIaPyf82i6naIywSHITFPXm8u4= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-622-2Z6pOcJUPxGVv_T-ME34-A-1; Wed, 16 Mar 2022 03:31:37 -0400 X-MC-Unique: 2Z6pOcJUPxGVv_T-ME34-A-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 50D9380231F for ; Wed, 16 Mar 2022 07:31:37 +0000 (UTC) Received: from calimero.vinschen.de (unknown [10.36.112.5]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2B21C2156A5A for ; Wed, 16 Mar 2022 07:31:37 +0000 (UTC) Received: by calimero.vinschen.de (Postfix, from userid 500) id 07F44A8071E; Wed, 16 Mar 2022 08:31:36 +0100 (CET) Date: Wed, 16 Mar 2022 08:31:35 +0100 From: Corinna Vinschen To: newlib@sourceware.org Subject: Re: [PATCH] newlib: libm: integrate tests subdir Message-ID: Reply-To: newlib@sourceware.org Mail-Followup-To: newlib@sourceware.org References: <20220314024916.2137-1-vapier@gentoo.org> MIME-Version: 1.0 In-Reply-To: <20220314024916.2137-1-vapier@gentoo.org> X-Scanned-By: MIMEDefang 2.78 on 10.11.54.6 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=vinschen@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Disposition: inline X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H5, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Mar 2022 07:31:40 -0000 On Mar 13 22:49, Mike Frysinger wrote: > Integrate the old libm/test/ subdir into the main build. It hasn't > been used in a long time causing the code to rot a bit. I've fixed > some of those, but it still fails for many ports, so it's disabled > by default. People who want to take a closer look can run: > $ make libm/test/test > --- > newlib/Makefile.am | 2 + > newlib/Makefile.in | 395 +++++++++++++++++++++++++++++++++- > newlib/libm/Makefile.inc | 1 + > newlib/libm/test/Makefile.in | 202 ----------------- > newlib/libm/test/Makefile.inc | 85 ++++++++ > newlib/libm/test/math.c | 6 - > newlib/libm/test/test.h | 5 + > newlib/libm/test/test_is.c | 1 - > 8 files changed, 479 insertions(+), 218 deletions(-) > delete mode 100644 newlib/libm/test/Makefile.in > create mode 100644 newlib/libm/test/Makefile.inc Thanks, please push. Corinna