From patchwork Tue Mar 21 12:53:40 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom de Vries X-Patchwork-Id: 66683 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9A5863857B93 for ; Tue, 21 Mar 2023 12:54:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9A5863857B93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1679403243; bh=clF9UxDA1/QbALrA4UB1Ok5n8f2z5PJJHuf/DKtwLWo=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=LGYjTV2bIW9Obk/aJadXBMuYOywazJ8WYxFPJxLyZlaxldSObwNcy1UT/pBd+wpze YBQujNirXDaVmLq0yWx2LWKQrU9rxtqXVGZiKxSYN95J3xY4SO5s+qpvtYrY0it++A At+WjMAxU+79/YrAbc4bzZGpYcydw8sobCtL+DBM= X-Original-To: gdb-patches@sourceware.org Delivered-To: gdb-patches@sourceware.org Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id 315A03858D37 for ; Tue, 21 Mar 2023 12:53:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 315A03858D37 Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 55CB021D01 for ; Tue, 21 Mar 2023 12:53:40 +0000 (UTC) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 4280713440 for ; Tue, 21 Mar 2023 12:53:40 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id l6IQD9SoGWRgcgAAMHmgww (envelope-from ) for ; Tue, 21 Mar 2023 12:53:40 +0000 To: gdb-patches@sourceware.org Subject: [pushed 1/2] [gdb/testsuite] Add missing quote in remote-gdbserver-on-localhost.exp Date: Tue, 21 Mar 2023 13:53:40 +0100 Message-Id: <20230321125341.20523-1-tdevries@suse.de> X-Mailer: git-send-email 2.35.3 MIME-Version: 1.0 X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Tom de Vries via Gdb-patches From: Tom de Vries Reply-To: Tom de Vries Errors-To: gdb-patches-bounces+patchwork=sourceware.org@sourceware.org Sender: "Gdb-patches" In a recent commit I forgot to add a double quote before chmod here: ... remote_exec build $rsh_cmd chmod go-rx ." ... Fix it by adding the missing double quote. --- gdb/testsuite/boards/remote-gdbserver-on-localhost.exp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) base-commit: ccd7caeea05eec1d43a1e63a7784db3570c02db0 diff --git a/gdb/testsuite/boards/remote-gdbserver-on-localhost.exp b/gdb/testsuite/boards/remote-gdbserver-on-localhost.exp index 530e744c9b4..a38edacf130 100644 --- a/gdb/testsuite/boards/remote-gdbserver-on-localhost.exp +++ b/gdb/testsuite/boards/remote-gdbserver-on-localhost.exp @@ -56,7 +56,7 @@ save_vars {rsh_cmd res} { # Make sure build can't see files on remote target. We can't use # remote_exec target, because we're in the middle of parsing the # target board. - remote_exec build $rsh_cmd chmod go-rx ." + remote_exec build $rsh_cmd "chmod go-rx ." } # Set remotedir by default, to force remote_download target to give an