aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2015-12-10 16:49:32 +0000
committerPedro Alves <palves@redhat.com>2015-12-10 16:49:32 +0000
commit36d6fc0a3cbda55b9eb07a351c1312e369d4743f (patch)
tree95cafaf6b9af75d7d796bf8218060b2c8e794a54
parentd6bf7ce6c26cd31fe744419269dea999a3faaf8c (diff)
downloadgdb-36d6fc0a3cbda55b9eb07a351c1312e369d4743f.zip
gdb-36d6fc0a3cbda55b9eb07a351c1312e369d4743f.tar.gz
gdb-36d6fc0a3cbda55b9eb07a351c1312e369d4743f.tar.bz2
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 <palves@redhat.com> * gdb.multi/base.exp: Remove stale "spaces" references.
-rw-r--r--gdb/testsuite/ChangeLog4
-rw-r--r--gdb/testsuite/gdb.multi/base.exp8
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 <palves@redhat.com>
+ * gdb.multi/base.exp: Remove stale "spaces" references.
+
+2015-12-10 Pedro Alves <palves@redhat.com>
+
* 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}.*"