From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1726) id 87D443858C51; Tue, 3 May 2022 09:49:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 87D443858C51 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Andrew Burgess To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdb/testsuite: small cleanup in mi-break-qualified.exp X-Act-Checkin: binutils-gdb X-Git-Author: Andrew Burgess X-Git-Refname: refs/heads/master X-Git-Oldrev: 43cef57a742bae20477bb2fbb306ab4c4167318c X-Git-Newrev: 3cd25174b88a10474131573dda6c15d09cb3031e Message-Id: <20220503094903.87D443858C51@sourceware.org> Date: Tue, 3 May 2022 09:49:03 +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, 03 May 2022 09:49:03 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D3cd25174b88a= 10474131573dda6c15d09cb3031e commit 3cd25174b88a10474131573dda6c15d09cb3031e Author: Andrew Burgess Date: Fri Apr 29 18:07:54 2022 +0100 gdb/testsuite: small cleanup in mi-break-qualified.exp =20 It is not necessary to pass an empty string to mi_gdb_start, passing the empty string is equivalent to passing no arguments, which is what we do everywhere else (that we don't need to specify an actual argument). =20 The only place we use 'mi_gdb_start ""' is in gdb.mi/mi-break-qualified.exp, so in this commit I just replace that with a call to 'mi_gdb_start' - just for consistency. =20 There should be no change in what is tested after this commit. Diff: --- gdb/testsuite/gdb.mi/mi-break-qualified.exp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/testsuite/gdb.mi/mi-break-qualified.exp b/gdb/testsuite/gd= b.mi/mi-break-qualified.exp index ff37950fd76..ca6df0782df 100644 --- a/gdb/testsuite/gdb.mi/mi-break-qualified.exp +++ b/gdb/testsuite/gdb.mi/mi-break-qualified.exp @@ -95,7 +95,7 @@ proc test_break_qualified {} { =20 mi_gdb_exit =20 -if [mi_gdb_start ""] { +if [mi_gdb_start] { return }