From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 419A2385741A for ; Wed, 1 Jun 2022 04:54:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 419A2385741A Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 3C5CE1F8A3; Wed, 1 Jun 2022 04:54:28 +0000 (UTC) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 1A9AD13A8F; Wed, 1 Jun 2022 04:54:28 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id YWVJBQTxlmKUdwAAMHmgww (envelope-from ); Wed, 01 Jun 2022 04:54:28 +0000 Message-ID: Date: Wed, 1 Jun 2022 06:54:27 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.0 Subject: Re: [PATCH v2 00/16] Fortran compiler identification and ifx testsuite support Content-Language: en-US To: Andrew Burgess , Nils-Christian Kempke , gdb-patches@sourceware.org Cc: JiniSusan.George@amd.com References: <20220531092423.2361679-1-nils-christian.kempke@intel.com> <87ilpld6ho.fsf@redhat.com> From: Tom de Vries In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE 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-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2022 04:54:31 -0000 On 5/31/22 21:33, Tom de Vries via Gdb-patches wrote: > I'm seeing regressions with check-read1 (haven't tried native yet), I'm > guessing because of this patch series: > ... > FAIL: gdb.fortran/allocated.exp: gdb_breakpoint: set breakpoint at unknown I could reproduce this with native, but only when running the entire testsuite, not just the test-case. This looks like problems due to the caching of compiler_info, which doesn't take the language argument of proc get_compiler_info into account. So, if I run the entire test suite, compiler_info is set to gcc-7-5-0 and stays that way due to the caching, and because of this series gcc is no longer matched in proc fortran_main, so we run into FAILs. Thanks, - Tom