From: Pedro Alves Date: Thu, 10 Dec 2015 16:49:32 +0000 (+0000) Subject: Remove "spaces" references from gdb.multi/base.exp X-Git-Tag: gdb-7.11-release~577 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36d6fc0a3cbda55b9eb07a351c1312e369d4743f;p=external%2Fbinutils.git Remove "spaces" references from gdb.multi/base.exp 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. --- 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}.*"