From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id 457EE38582A6 for ; Wed, 1 Jun 2022 05:25:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 457EE38582A6 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-out1.suse.de (Postfix) with ESMTPS id 82A3921AB2; Wed, 1 Jun 2022 05:25:15 +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 5B7BE13A8F; Wed, 1 Jun 2022 05:25:15 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id VXB4FDv4lmLcAgAAMHmgww (envelope-from ); Wed, 01 Jun 2022 05:25:15 +0000 Message-ID: <1ef51d87-3e95-94b5-d12e-70d9646c4a16@suse.de> Date: Wed, 1 Jun 2022 07:25:14 +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 12/16] testsuite, fortran: fix info-types for intel compilers 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> <20220531092423.2361679-6-nils-christian.kempke@intel.com> <87o7zdd6ua.fsf@redhat.com> From: Tom de Vries In-Reply-To: <87o7zdd6ua.fsf@redhat.com> 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 05:25:17 -0000 On 5/31/22 18:06, Andrew Burgess via Gdb-patches wrote: > Nils-Christian Kempke writes: > >> This info-types.exp test case had a few issues that this patch fixes. >> I'm seeing this regression: ... Running /home/vries/gdb_versions/devel/src/gdb/testsuite/gdb.fortran/info-types.exp ... gdb compile failed, /home/vries/gdb_versions/devel/src/gdb/testsuite/gdb.fortran/info-types.f90:47:13: type (m1t1) :: var_b 1 Error: Derived type 'm1t1' at (1) is being used before it is defined /home/vries/gdb_versions/devel/src/gdb/testsuite/gdb.fortran/info-types.f90:50:8: var_b%b = 2 1 Error: Symbol 'var_b' at (1) has no IMPLICIT type UNTESTED: gdb.fortran/info-types.exp: failed to prepare ... Likewise for a few other test-cases that use the same source. Thanks, - Tom