From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id tc0RJTNno2LBLgEAWB0awg (envelope-from ) for ; Fri, 10 Jun 2022 11:45:55 -0400 Received: by simark.ca (Postfix, from userid 112) id 8447C1E223; Fri, 10 Jun 2022 11:45:55 -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=V1Q0ADzC; 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 15B891E143 for ; Fri, 10 Jun 2022 11:45:55 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 985C0393BA42 for ; Fri, 10 Jun 2022 15:45:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 985C0393BA42 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1654875954; bh=ao4r3M8hI9E3MR1p864vbJM4bWJzc7Dl0IxsfutVrZ0=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=V1Q0ADzCQBwq7Iq/XBQmz/gPJj91UgKVuYm31oo5KZ+Cauo5KOmlr8PUBPzgYmpTb h8viTy14MwyroD+mhMiT1M7HOLJv0SUD+34sWDXdcDOGKtDNgQTBDERiiUEY6uJkGD 9y45GMbQEmNEUjq41hm7rzY+EQ2viQ7J4DzBAsDk= Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by sourceware.org (Postfix) with ESMTPS id 25E6A385C30B for ; Fri, 10 Jun 2022 15:45:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 25E6A385C30B X-IronPort-AV: E=McAfee;i="6400,9594,10374"; a="363992474" X-IronPort-AV: E=Sophos;i="5.91,290,1647327600"; d="scan'208";a="363992474" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jun 2022 08:45:32 -0700 X-IronPort-AV: E=Sophos;i="5.91,290,1647327600"; d="scan'208";a="649884836" Received: from labpcdell3650-003.iul.intel.com (HELO localhost) ([172.28.49.87]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jun 2022 08:45:31 -0700 To: gdb-patches@sourceware.org Subject: [PATCH 0/4] Adapt Fortran testsuite for ifort Date: Fri, 10 Jun 2022 17:44:56 +0200 Message-Id: <20220610154500.374897-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 Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Hi, there were a few places in the testsuite where ifort's behavior was FAILing the tests and where I think this is not the result of an ifort bug but rather of a testsuite not forgiving enough. The attached patches should not change the behavior for any other compiler, and I could not find any regressions with gfortran/ifx (tested with unix, unix/m32, native-gdbserver and native-extended-gdbserver). For ifort this series improves testsuite performance if compared to the current master: master before series: === gdb Summary === # of expected passes 5771 # of unexpected failures 238 # of unknown successes 1 # of known failures 1 # of untested testcases 1 # of unresolved testcases 3 # of unsupported tests 5 # of duplicate test names 3 master after series: === gdb Summary === # of expected passes 5847 # of unexpected failures 161 # of known failures 1 # of untested testcases 1 # of unresolved testcases 3 # of unsupported tests 5 # of duplicate test names 3 Any feedback is appreciated, 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 | 5 ++++- 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 | 5 +++-- 7 files changed, 26 insertions(+), 12 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