From patchwork Thu Dec 10 16:50:04 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pedro Alves X-Patchwork-Id: 9963 Received: (qmail 40864 invoked by alias); 10 Dec 2015 16:50:10 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 40804 invoked by uid 89); 10 Dec 2015 16:50:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 10 Dec 2015 16:50:07 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id BBE88537C for ; Thu, 10 Dec 2015 16:50:05 +0000 (UTC) Received: from brno.lan (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tBAGo4ic018991 for ; Thu, 10 Dec 2015 11:50:05 -0500 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [ob/pushed] Remove "spaces" references from gdb.multi/base.exp Date: Thu, 10 Dec 2015 16:50:04 +0000 Message-Id: <1449766204-1638-1-git-send-email-palves@redhat.com> I think these references to "spaces" came from the original multi-exec submission that exposed "symbol spaces" to the user and had a different UI, and then survived a global find/replace. gdb/testsuite/ChangeLog: 2015-12-10 Pedro Alves * gdb.multi/base.exp: Remove stale "spaces" references. --- gdb/testsuite/ChangeLog | 4 ++++ gdb/testsuite/gdb.multi/base.exp | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index f0e026d..ab7a324 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2015-12-10 Pedro Alves + * gdb.multi/base.exp: Remove stale "spaces" references. + +2015-12-10 Pedro Alves + * gdb.multi/base.exp: Don't use nowarnings. * gdb.multi/bkpt-multi-exec.exp: Don't use nowarnings. * gdb.multi/hangout.c: Include stdio.h. diff --git a/gdb/testsuite/gdb.multi/base.exp b/gdb/testsuite/gdb.multi/base.exp index b58e49a..0c74d98 100644 --- a/gdb/testsuite/gdb.multi/base.exp +++ b/gdb/testsuite/gdb.multi/base.exp @@ -44,19 +44,19 @@ if { [build_executable ${testfile}.exp ${exec3} "${srcfile3}" {debug}] == -1 } { clean_restart ${exec1} -# Add an empty inferior space, switch to it, and load a main -# executable into it. +# Add an empty inferior, switch to it, and load a main executable into +# it. gdb_test "add-inferior" "Added inferior 2.*" "add empty inferior 2" gdb_test "inferior 2" "Switching to inferior 2.*" "switch to inferior 2" gdb_test "file ${binfile2}" ".*" "load ${exec2} file in inferior 2" -# Add a new inferior space and load a main executable into it in one +# Add a new inferior and load a main executable into it in one # command. gdb_test "add-inferior -exec ${binfile3}" \ "Added inferior 3.*" \ "add inferior 3 with -exec ${exec3}" -# Check that we have multiple spaces. +# Check that we have multiple inferiors. gdb_test "info inferiors" \ "Executable.*${exec1}.*${exec2}.*${exec3}.*"