From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id rbrxAtgrD2O8WDAAWB0awg (envelope-from ) for ; Wed, 31 Aug 2022 05:37:28 -0400 Received: by simark.ca (Postfix, from userid 112) id 0062A1E4A7; Wed, 31 Aug 2022 05:37:27 -0400 (EDT) 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=cDlfxfLm; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id AC7D21E222 for ; Wed, 31 Aug 2022 05:37:27 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 557033839DE3 for ; Wed, 31 Aug 2022 09:37:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 557033839DE3 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1661938647; bh=p/oQJKRYlbhsxjqLyK8fNCaJMvZSjMbCOqDcR/RaZmA=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=cDlfxfLmgaUIh+nwNIReTqUP9bjmQoe64U2qhTin9f7VWhYj4Xlzb3woofzVeOBio 1gRnWb80eTfQ7+Tbt3c0nYNgfu4PtLnjDf8AZdrasTJzJirflgRnla5iN7g3WzPr+T YtaciQvEKLUNg7GGh4pVUTUowjwDQKNuRBzF+IAk= Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by sourceware.org (Postfix) with ESMTPS id DD3CD3858280 for ; Wed, 31 Aug 2022 09:37:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org DD3CD3858280 X-IronPort-AV: E=McAfee;i="6500,9779,10455"; a="275159435" X-IronPort-AV: E=Sophos;i="5.93,277,1654585200"; d="scan'208";a="275159435" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Aug 2022 02:37:05 -0700 X-IronPort-AV: E=Sophos;i="5.93,277,1654585200"; d="scan'208";a="701311211" Received: from labpcdell3650-003.iul.intel.com (HELO localhost) ([172.28.49.87]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Aug 2022 02:37:04 -0700 To: gdb-patches@sourceware.org Subject: [PATCH v2 0/4] Adapt Fortran testsuite for ifort Date: Wed, 31 Aug 2022 11:36:46 +0200 Message-Id: <20220831093650.674582-1-nils-christian.kempke@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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: , From: Nils-Christian Kempke via Gdb-patches Reply-To: Nils-Christian Kempke Cc: tom@tromey.com Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Hi! Please find attached v2 of this series. V1 can be found here: https://sourceware.org/pipermail/gdb-patches/2022-June/190013.html V2 incorporates Tom's comment on patch 3/4 here: https://sourceware.org/pipermail/gdb-patches/2022-August/191606.html so changes from v1 to v2 only concern patch 3: * Patch 1: unchanged. * Patch 2: unchanged. * Patch 3: Remove fortran_runto_main for the two tests as well as the first breakpoint setting + hitting and instead use runto to directly run to the first breakpoint location. * Patch 4: unchanged. Tom has approved of Patch 1, 2, and 4 otherwise, but if anyone has a comment, they are always welcome! Cheers! Nils Nils-Christian Kempke (4): testsuite, fortran: make mixed-lang-stack less compiler dependent testsuite, fortran: Remove self assignment non-statements testsuite, fortran: adapt tests for ifort's 'start' behavior testsuite, fortran: make kfail gfortran specific gdb/testsuite/gdb.fortran/array-slices-bad.exp | 13 +++++-------- gdb/testsuite/gdb.fortran/function-calls.exp | 4 +++- gdb/testsuite/gdb.fortran/library-module-lib.f90 | 2 +- gdb/testsuite/gdb.fortran/library-module-main.f90 | 2 +- gdb/testsuite/gdb.fortran/mixed-lang-stack.exp | 9 ++++++++- gdb/testsuite/gdb.fortran/module.f90 | 11 ++++++----- gdb/testsuite/gdb.fortran/vla-type.exp | 11 +++-------- 7 files changed, 27 insertions(+), 25 deletions(-) -- 2.25.1 Intel Deutschland GmbH Registered Address: Am Campeon 10, 85579 Neubiberg, Germany Tel: +49 89 99 8853-0, www.intel.de Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva Chairperson of the Supervisory Board: Nicole Lau Registered Office: Munich Commercial Register: Amtsgericht Muenchen HRB 186928