From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id sJ/ND4Q0FGUpbh4AWB0awg (envelope-from ) for ; Wed, 27 Sep 2023 09:56:20 -0400 Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=vsjMZQJQ; dkim-atps=neutral Received: by simark.ca (Postfix, from userid 112) id 3E2A91E0C3; Wed, 27 Sep 2023 09:56:20 -0400 (EDT) Received: from server2.sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 306211E092 for ; Wed, 27 Sep 2023 09:56:18 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 97FEE385DC02 for ; Wed, 27 Sep 2023 13:56:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 97FEE385DC02 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1695822977; bh=cLZH9so43pjrUsfv2DATrIcVmobYEzuDSouZdf5PxQA=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=vsjMZQJQF+Pp0juZ8tIgHAJD7XzpUG/b6NDXMGRFRL/4Xh8ToJ9BS2dEQvxr9NcZC v/stvSVKMq2OjGyvH7hVUbpzCKgSIaexFLwdESH7G2ZBL4QoFXg2HmX+hITgLycLAi /cWeQ7MB9gJE+rF2ABrZXfDOBX8JH5W3arY/OU7M= Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 7AE613857B93 for ; Wed, 27 Sep 2023 13:55:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 7AE613857B93 Received: from [10.0.0.170] (modemcable238.237-201-24.mc.videotron.ca [24.201.237.238]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id D4CCA1E092; Wed, 27 Sep 2023 09:55:49 -0400 (EDT) Message-ID: Date: Wed, 27 Sep 2023 09:55:49 -0400 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: GDB BoF notes - GNU Cauldron 2023 To: Pedro Alves , gdb@sourceware.org References: <1e26c71e-e242-de11-a687-46e05586e608@palves.net> Content-Language: fr In-Reply-To: <1e26c71e-e242-de11-a687-46e05586e608@palves.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, 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 X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Simon Marchi via Gdb Reply-To: Simon Marchi Errors-To: gdb-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb" On 9/27/23 08:41, Pedro Alves wrote: > Hi all, > > We had a GDB BoF at the GNU Cauldron this past weekend, like in > previous years. > > I was positively surprised with the attendance and the engagement. > Thanks all! > > I took notes live while we were discussing. Thanks to Mark Wielaard > for letting me use this computer. :-) > > Below's an edited version of the notes, with some more details filled > in. Thanks a lot for taking notes! > =========== GDB BoF / GNU Cauldron 2023 =============== > > - Testsuite and CI discussion > > With either Linaro's CI and the sourceware.org buildbot, pre-commit, > post-commit, should breakages result in emails to mailing list? > > Are post-commit breakage emails sent to git author only? Should go > to git committer as well, for e.g., the scenario of a maintainer > applying a non-maintainer's patch. AI: Talk with Maxim Kuvyrkov > about it. > > Be mindful of overwhelming gdb-testers traffic. Counter argument > raised -- list is also used as results archive. If we decide not to send the breakage emails to gdb-patches, could we have a list we can subscribe to, to receive breakage emails? > - Revisiting defaults > > - Can we turn history saving on by default? Maybe default to > history on home dir by default, too (~/.gdb_history). That would > align us with bash. Some in the room have had this enabled in > their gdbinits for so long they no longer remembered this wasn't > on by default. Others weren't even aware you can turn this on. > > - Can we disable pagination by default? Surprisingly, no one in the > room expressed that they like pagination on. Sevearl people > mentioned that they have it off by default, and then use either > the terminal scroll function, or: > > "(gdb) pipe GDB_COMMAND | less" > > when necessary. I would be happy for these two changes to defaults to be made. Simon