From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7876) id CDCAC395A021; Tue, 31 May 2022 14:45:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CDCAC395A021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Nils-Christian Kempke To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdb/testsuite: disable charset.exp for intel compilers X-Act-Checkin: binutils-gdb X-Git-Author: Nils-Christian Kempke X-Git-Refname: refs/heads/master X-Git-Oldrev: 22582546c1833f771cea1201a75315df6dab0a34 X-Git-Newrev: 87364601b87da148b9c4b96aa164e329794c2959 Message-Id: <20220531144543.CDCAC395A021@sourceware.org> Date: Tue, 31 May 2022 14:45:43 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 May 2022 14:45:43 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D87364601b87d= a148b9c4b96aa164e329794c2959 commit 87364601b87da148b9c4b96aa164e329794c2959 Author: Nils-Christian Kempke Date: Tue May 31 16:43:44 2022 +0200 gdb/testsuite: disable charset.exp for intel compilers =20 The test specifically tests for the Fortran CHARACTER(KIND=3D4) which is not available in ifx/ifort. =20 Since the other characters are also printed elsewhere, we disable this test for the unsupported compilers. Diff: --- gdb/testsuite/gdb.fortran/charset.exp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gdb/testsuite/gdb.fortran/charset.exp b/gdb/testsuite/gdb.fort= ran/charset.exp index 5e4ba592cc1..ae3e34ce1c7 100644 --- a/gdb/testsuite/gdb.fortran/charset.exp +++ b/gdb/testsuite/gdb.fortran/charset.exp @@ -21,6 +21,11 @@ if { [skip_fortran_tests] } { return -1 } standard_testfile .f90 load_lib fortran.exp =20 +# Ifx, and ifort do not support kind=3D4 for CHARACTER. +if { [test_compiler_info {ifx-*} f90] || [test_compiler_info {ifort-*} f90= ] } { + return -1 +} + if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} {debu= g additional_flags=3D-fbackslash f90}] } { return -1 }