From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id 2DDF73858CDA; Thu, 1 Dec 2022 15:39:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2DDF73858CDA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1669909191; bh=dihL0E4amDclsGj43+Al4NAsCwpgpgOWyWQsQAM7L7I=; h=From:To:Subject:Date:From; b=NRCrlW1L/2x0PuaKDxARnp2Uy7H739uK+gcAmhxFmbzlRjGcAaSFbdkUAc7BXOx1e 8T4UzGrwNPp54B4xjZmx0iAMVXp712uZpYIHichyZjVj3GgG26ceL96aHwn2zGA//C +3LOywY6tDPUSHl2i7xOWTt2HHkHDSf4zjJcvS3Y= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tom Tromey To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Remove obsolete check from skip_compile_feature_tests X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: 3b7aed0cc72d516d1f1b62cf480984d2c5e4d05f X-Git-Newrev: 5b92bbd934059eb06cf531c268627deef53886aa Message-Id: <20221201153951.2DDF73858CDA@sourceware.org> Date: Thu, 1 Dec 2022 15:39:51 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D5b92bbd93405= 9eb06cf531c268627deef53886aa commit 5b92bbd934059eb06cf531c268627deef53886aa Author: Tom Tromey Date: Wed Nov 30 10:09:20 2022 -0700 Remove obsolete check from skip_compile_feature_tests =20 skip_compile_feature_tests checks for "Command not supported on this host", but this error was removed by commit e8d8cce6 ("Import mkdtemp gnulib module, fix mingw build"). This patch removes the obsolete test. Diff: --- gdb/testsuite/lib/compile-support.exp | 3 --- 1 file changed, 3 deletions(-) diff --git a/gdb/testsuite/lib/compile-support.exp b/gdb/testsuite/lib/comp= ile-support.exp index 58b3e4e3a1e..16b7c5dbc0d 100644 --- a/gdb/testsuite/lib/compile-support.exp +++ b/gdb/testsuite/lib/compile-support.exp @@ -26,9 +26,6 @@ proc skip_compile_feature_tests {} { "Could not load libcc1.*\r\n$gdb_prompt $" { set result 1 } - -re "Command not supported on this host\\..*\r\n$gdb_prompt $" { - set result 1 - } -re "\r\n$gdb_prompt $" { } }