From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from elastic.org (elastic.org [96.126.110.187]) by sourceware.org (Postfix) with ESMTPS id 2D47E3858D1E; Fri, 23 Dec 2022 14:41:28 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2D47E3858D1E Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=elastic.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=elastic.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=elastic.org ; s=default2; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=L/qHdjPOlWE34v3/hmD09jba8ayvjjslvn9JA95ZmC8=; b=hIi6mZZECK7Tt7C3ModSo5SnXL n2s4tAeCCb2h7BaEUVMHHio6L6J8wzpw4+s+/snHzWZngy0jAg9EPIIJlMTWaJAQM8y66XSahzneE mPr7CIy+NDu9L9njmxrE7ZybR9H/6DUtz5MDvDCGurUd+7GYWcoQGQsyMqsGukhwGdmGL0A2OLHo+ F8hOm6pO6MSQG3utK81kc8NQY5PX8/KbcxfcD+dt2l6PgdqUfQ+mnBXhIiCzczSUjiMd2inHyraEz 03aA4iiyAFHgBoynT1ZCky31JmhV3j9zo/g4jifiyHBoCzpuP1WVWkNaAuqzXH+BM7XgkwruWnsuk 3GfbjkKw==; Received: from vpn-home.elastic.org ([10.0.0.2] helo=elastic.org) by elastic.org with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1p8jEj-0001s1-14; Fri, 23 Dec 2022 14:41:25 +0000 Received: from dhcp25.elastic.org ([192.168.1.125] helo=very.elastic.org) by elastic.org with esmtp (Exim 4.96) (envelope-from ) id 1p8jEi-0002jA-37; Fri, 23 Dec 2022 09:41:24 -0500 Received: from fche by very.elastic.org with local (Exim 4.96) (envelope-from ) id 1p8jEi-0050DA-2u; Fri, 23 Dec 2022 09:41:24 -0500 Date: Fri, 23 Dec 2022 09:41:24 -0500 From: "Frank Ch. Eigler" To: Mark Wielaard Cc: Indu Bhagat , binutils@sourceware.org, buildbot@sourceware.org Subject: Re: libsframe builder (Was: [PATCH 0/2] libsframe: fix some memory leaks) Message-ID: References: <20221222225457.1095930-1-indu.bhagat@oracle.com> <98617b373993a3c6054b9389cddfde56b9aec7d1.camel@klomp.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <98617b373993a3c6054b9389cddfde56b9aec7d1.camel@klomp.org> X-Sender-Verification: "" X-Spam-Status: No, score=-101.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP,USER_IN_WELCOMELIST,USER_IN_WHITELIST autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi - > command=['make', > util.Interpolate('-j%(prop:ncpus)s'), > - 'check-ld', 'check-gas', 'check-binutils'], > + 'check-ld', 'check-gas', 'check-binutils', > + 'check-libsframe'], > name='make check', > logfiles={ "ld.sum": "ld/ld.sum", > "ld.log": "ld/ld.log", > "gas.sum": "gas/testsuite/gas.sum", > "gas.log": "gas/testsuite/gas.log", > "binutils.sum": "binutils/binutils.sum", > - "binutils.log": "binutils/binutils.log" }, > + "binutils.log": "binutils/binutils.log", > + "libsframe.sum": "libsframe/libsframe.sum", > + "libsframe.log": "libsframe/libsframe.log" }, > [...] (For the record, all of those .log/.sum files, and more, are pulled into the bunsen database automagically, so listing them all here for storage and presentation in the buildbot system is not really necessary.) - FChE