From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 5958E385840D for ; Wed, 23 Nov 2022 11:50:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 5958E385840D Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oxoGz-0000RQ-Ee; Wed, 23 Nov 2022 06:50:38 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=JnnSTb5zODaUUi7VhG9JJjzKkl91ghKM+0Um8mIwa/I=; b=Bsz6EQNxMjT2XQoWwjnq H5DAyW3AXQJGqtxCXMquYTKtBF6p0DLAcOiyfNNKSzw6mF8HHRkkyIpK5sLgJDLR1EnyAdE7EwUT5 h+vQyJvttLedEXzr/PqO6DrqR/inj62MrHarM6vD355+My8aWdcfFCDlAk77OR406of+l719aRPIp W/GRUkZ6gNo6HK7OfQUBwPPVHnnLajajcvfvdQVsiiWjkpdKVxtStH1JExTd5rrKikcR8vXeShRkt LE4EeZjlCa8yczWt2776s2OqXeeuRRx5VLozNzxNMOdFesvVQbDzxpg5F50V46SR0kZmQWtv+6Sw0 X6hxlrSERleMqQ==; Received: from [141.143.193.68] (helo=termi.gnu.org) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oxoGq-0000co-7i; Wed, 23 Nov 2022 06:50:37 -0500 From: "Jose E. Marchesi" To: Mark Wielaard Cc: Arsen =?utf-8?Q?Arsenovi=C4=87?= , buildbot@sourceware.org, poke-devel@gnu.org Subject: Re: [PATCH builder.git] master.cfg: add GNU poke builder References: <20221119233644.911898-1-arsen@aarsen.me> Date: Wed, 23 Nov 2022 12:53:55 +0100 In-Reply-To: (Mark Wielaard's message of "Wed, 23 Nov 2022 01:37:13 +0100") Message-ID: <87ilj5zy24.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-9.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_PASS,SPF_PASS,TXREP 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: > BTW. I tried on debian-i386, but got some test failures/crashes: > > The following patch seems to fix that: > > diff --git a/libpoke/pkl-lex.l b/libpoke/pkl-lex.l > index 4c9b013e..ef562ccb 100644 > --- a/libpoke/pkl-lex.l > +++ b/libpoke/pkl-lex.l > @@ -176,7 +176,7 @@ build_overflow_error_msg (uint64_t value, int width) > : ""); > > asprintf (&msg, > - "signed overflow\ntry: %luU%s as int<%d>", > + "signed overflow\ntry: %" PRIu64 "U%s as int<%d>", > value, suffix, width); > return msg; > } I just applied that fix in master. We only develop in 64-bit, so we usually only catch these regressions before doing releases, when I make a point to test in 32-bit. The autobuild already paid back, in a way ;) Thanks!