[binutils-gdb] gdb/testsuite: fix shellcheck issues in make-check-all.sh

Andrew Burgess via Gdb-cvs <[email protected]> Thu, 23 Jul 2026 16:42:40 +0000 (GMT)
Newsgroups gmane.comp.gdb.cvs
Message-ID <[email protected]>
https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D475de319ff57=
87f5cf89c2415aeeaea53604a4de

commit 475de319ff5787f5cf89c2415aeeaea53604a4de
Author: Andrew Burgess <[email protected]>
Date:   Sat Jul 18 11:45:18 2026 +0100

    gdb/testsuite: fix shellcheck issues in make-check-all.sh
   =20
    Fix shellcheck issues in the make-check-all.sh script.  These are just
    quoting issues, and should have no functional impact.
   =20
    There should be no changes in what is tested after this commit.
   =20
    Approved-By: Tom Tromey <[email protected]>

Diff:
---
 gdb/testsuite/make-check-all.sh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gdb/testsuite/make-check-all.sh b/gdb/testsuite/make-check-all=
.sh
index c46cd8de4ed..3cf6b46cdb0 100755
--- a/gdb/testsuite/make-check-all.sh
+++ b/gdb/testsuite/make-check-all.sh
@@ -320,7 +320,7 @@ main ()
     for b in "${target_boards[@]}"; do
 	echo "TARGET BOARD: $b"
 	rtf=3D(
-	    --target_board=3D"$b"
+	    "--target_board=3D$b"
 	)
 	rtf_for_board "$b"
 	maketarget_for_board "$b"
@@ -332,7 +332,7 @@ main ()
     for b in "${gdbserver_boards[@]}" "${remote_gdbserver_boards[@]}"; do
 	echo "TARGET BOARD: $b"
 	rtf=3D(
-	    --target_board=3D"$b"
+	    "--target_board=3D$b"
 	)
 	rtf_for_board "$b"
 	maketarget_for_board "$b"
@@ -345,8 +345,8 @@ main ()
 	for b in "${remote_gdbserver_boards[@]}"; do
 	    echo "HOST BOARD: $h, TARGET BOARD: $b"
 	    rtf=3D(
-		--host_board=3D"$h"
-		--target_board=3D"$b"
+		"--host_board=3D$h"
+		"--target_board=3D$b"
 	    )
 	    rtf_for_board "$h"
 	    rtf_for_board "$b"
@@ -360,8 +360,8 @@ main ()
     for b in "${host_target_boards[@]}"; do
 	echo "HOST/TARGET BOARD: $b"
 	rtf=3D(
-	    --host_board=3D"$b"
-	    --target_board=3D"$b"
+	    "--host_board=3D$b"
+	    "--target_board=3D$b"
 	)
 	rtf_for_board "$b"
 	maketarget_for_board "$b"