From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7876) id BCFAF395A054; Tue, 31 May 2022 14:45:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BCFAF395A054 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: rename intel next gen c/cpp compilers X-Act-Checkin: binutils-gdb X-Git-Author: Nils-Christian Kempke X-Git-Refname: refs/heads/master X-Git-Oldrev: 44d469c5f85a4243462b8966722dafa62b602bf5 X-Git-Newrev: 22582546c1833f771cea1201a75315df6dab0a34 Message-Id: <20220531144538.BCFAF395A054@sourceware.org> Date: Tue, 31 May 2022 14:45:38 +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:38 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D22582546c183= 3f771cea1201a75315df6dab0a34 commit 22582546c1833f771cea1201a75315df6dab0a34 Author: Nils-Christian Kempke Date: Tue May 31 16:43:44 2022 +0200 gdb/testsuite: rename intel next gen c/cpp compilers =20 The name for icx and icpx in the testsuite was earlier set to 'intel-*' by the compiler identification. This commit changes this to 'icx-*'. =20 Note, that currently these names are not used within the testsuite so no tests have to be adapted here. Diff: --- gdb/testsuite/lib/compiler.c | 2 +- gdb/testsuite/lib/compiler.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb/testsuite/lib/compiler.c b/gdb/testsuite/lib/compiler.c index 451cae38312..86140f8c0e7 100644 --- a/gdb/testsuite/lib/compiler.c +++ b/gdb/testsuite/lib/compiler.c @@ -75,5 +75,5 @@ set total_length [string length __clang_version__] set version_start_index [string last "(" __clang_version__] set version_string [string range __clang_version__ $version_start_index+5 = $total_length-2] set version_updated_string [string map {. -} $version_string] -set compiler_info "intel-$version_updated_string" +set compiler_info "icx-$version_updated_string" #endif diff --git a/gdb/testsuite/lib/compiler.cc b/gdb/testsuite/lib/compiler.cc index 1dfefee057d..a52e81c2e3e 100755 --- a/gdb/testsuite/lib/compiler.cc +++ b/gdb/testsuite/lib/compiler.cc @@ -63,5 +63,5 @@ set total_length [string length __clang_version__] set version_start_index [string last "(" __clang_version__] set version_string [string range __clang_version__ $version_start_index+5 = $total_length-2] set version_updated_string [string map {. -} $version_string] -set compiler_info "intel-$version_updated_string" +set compiler_info "icx-$version_updated_string" #endif