Remove "spaces" references from gdb.multi/base.exp
authorPedro Alves <palves@redhat.com>
Thu, 10 Dec 2015 16:49:32 +0000 (16:49 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 10 Dec 2015 16:49:32 +0000 (16:49 +0000)
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.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.multi/base.exp

index f0e026d..ab7a324 100644 (file)
@@ -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.
index b58e49a..0c74d98 100644 (file)
@@ -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}.*"