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 4F6A13858D3C for ; Mon, 28 Nov 2022 21:53:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4F6A13858D3C 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=QtvQE2p9RxJHqYUQ3FyG9lblwntS14bES1gxJzG65CE=; b=lJ5El9j4cc3O+i66BH5A5VXXYj ZWJy2v1dCFhmT72iinTIeI0+cPiABDAIRBzPzhbih65x8KrY6Jl5cerBfeMEtBSGHAefUT6yCuvud OlC2zF1RSNxwicp3f1eEoR8I2SNLPJR1jxNv/+TQZhx8lrgGprWorhxLOuEnsoeu6dgXk/AD/KXvQ yvyU7ROT9al9tnJKC6p4HVxjyWo6QSmeh59UF/dNVwG+CcK3HLqGknhLExcCoaf5CyBIrD0RLdenM 2iAiSS+l1EQu12/tE7lhHx3yZJTPiWv5qYFy9988lwZkGsbLu7M5Ga00qA0Ax482Xsz+X7N25fbDO cNR/Zqmw==; 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 1ozm3v-0007Nh-1E; Mon, 28 Nov 2022 21:53:15 +0000 Received: from very.elastic.org ([192.168.1.1]) by elastic.org with esmtp (Exim 4.96) (envelope-from ) id 1ozm3u-0007qM-2M; Mon, 28 Nov 2022 16:53:15 -0500 Received: from fche by very.elastic.org with local (Exim 4.96) (envelope-from ) id 1ozm3u-00ELm7-29; Mon, 28 Nov 2022 16:53:14 -0500 Date: Mon, 28 Nov 2022 16:53:14 -0500 From: "Frank Ch. Eigler" To: Arsen =?utf-8?Q?Arsenovi=C4=87?= Cc: Mark Wielaard , Mohammad-Reza Nabipoor , buildbot@sourceware.org, poke-devel@gnu.org Subject: Re: [PATCH builder.git] master.cfg: add GNU poke builder Message-ID: References: <20221119233644.911898-1-arsen@aarsen.me> <87ilj5zy24.fsf@gnu.org> <86a64aki12.fsf@aarsen.me> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86a64aki12.fsf@aarsen.me> 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 - > Ah, thanks. I didn't figure those would be needed, sorry abt that ;) Another suggestion: change your dejagnu .exp files so that the test name strings passed to "pass" "fail" etc. are persistent and generic, and not contain irrelevant stuff like a local complete path name. That's because having these paths in the test names makes those test cases different from run to run, and thus the results are not directly comparable. For example: https://builder.sourceware.org/testrun-diffs?mode=differences&commitish=4a4313189ff5c3e354c977f8eca6621329af3279&commitish=c6cb32e4a10b994e26e32266eaf7cce47f7128d5 It'd be better just to print the `basename $path` or something like that instead. - FChE