From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 0MeXIBAsD2O8WDAAWB0awg (envelope-from ) for ; Wed, 31 Aug 2022 05:38:24 -0400 Received: by simark.ca (Postfix, from userid 112) id 825291E4A7; Wed, 31 Aug 2022 05:38:24 -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=iTTedEYQ; 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 381C91E222 for ; Wed, 31 Aug 2022 05:38:24 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9CD4E3825BE7 for ; Wed, 31 Aug 2022 09:38:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9CD4E3825BE7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1661938703; bh=d3Y739qkhn1yleof20SHI2wIJmnhdW7AK1ntbgxzXzg=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=iTTedEYQkrVtiSi3OMYKhhlmyxcvUpmFLV6N0wPIz+jiElt/hdipRVpRq2VWy8pcT X+/ROnbUgAWCQj25U5EaSMJWnnb6Vs+iK0cg5NW/SNUg9rShN628e3Bm4qGQl5VfqQ GsI6bI+dpyeeq0Fp7m5JyuuTlozRcIS/GKd1kErc= Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by sourceware.org (Postfix) with ESMTPS id 53321383CCFF for ; Wed, 31 Aug 2022 09:37:23 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 53321383CCFF X-IronPort-AV: E=McAfee;i="6500,9779,10455"; a="359371220" X-IronPort-AV: E=Sophos;i="5.93,277,1654585200"; d="scan'208";a="359371220" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Aug 2022 02:37:22 -0700 X-IronPort-AV: E=Sophos;i="5.93,277,1654585200"; d="scan'208";a="680370733" 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; 31 Aug 2022 02:37:20 -0700 To: gdb-patches@sourceware.org Subject: [PATCH v2 4/4] testsuite, fortran: make kfail gfortran specific Date: Wed, 31 Aug 2022 11:36:50 +0200 Message-Id: <20220831093650.674582-5-nils-christian.kempke@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220831093650.674582-1-nils-christian.kempke@intel.com> References: <20220831093650.674582-1-nils-christian.kempke@intel.com> 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" The modified test in function-calls.exp actually passes with ifort and ifx. The particular fail seems to be specific to gfortran. When the test was introduced it was only tested with gfortran (actually the whole patch was written with gfortran and the GNU Fortran argument passing convention in mind). --- gdb/testsuite/gdb.fortran/function-calls.exp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/gdb.fortran/function-calls.exp b/gdb/testsuite/gdb.fortran/function-calls.exp index bc0192be064..533283b9ef8 100644 --- a/gdb/testsuite/gdb.fortran/function-calls.exp +++ b/gdb/testsuite/gdb.fortran/function-calls.exp @@ -102,7 +102,9 @@ gdb_test "p sum_some(1,2)" " = 3" # Paragraph 10: optional value arguments. There is insufficient DWARF # information to reliably make this case work. -setup_kfail "gdb/24305" *-*-* +if { [test_compiler_info {gfortran-*} f90] } { + setup_kfail "gdb/24305" *-*-* +} gdb_test "p one_arg_value(10)" " = 10" # DW_AT_artificial formal parameters must be passed manually. This -- 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