diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2016-08-17 16:02:27 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2016-08-17 16:02:27 -0400 |
commit | eb2332d78d4ef40a2696aa0f6c833ea26a739efc (patch) | |
tree | b3469cd013cfe62ecfb444262bacd707f269e0c6 /gdb/testsuite/gdb.multi | |
parent | 63c61e04bb7168f0819fc590ac44e7583b225f7b (diff) | |
download | gdb-eb2332d78d4ef40a2696aa0f6c833ea26a739efc.zip gdb-eb2332d78d4ef40a2696aa0f6c833ea26a739efc.tar.gz gdb-eb2332d78d4ef40a2696aa0f6c833ea26a739efc.tar.bz2 |
Fix remove-inferior error message
This error message should not contain the word symbol:
(gdb) remove-inferiors 1
Warning: Can not remove current symbol inferior 1.
gdb/ChangeLog:
* inferior.c (remove_inferior_command): Fix error message.
gdb/testsuite/ChangeLog:
* gdb.multi/remove-inferiors.exp (test_remove_inferiors): Fix
expected error message.
Diffstat (limited to 'gdb/testsuite/gdb.multi')
-rw-r--r-- | gdb/testsuite/gdb.multi/remove-inferiors.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.multi/remove-inferiors.exp b/gdb/testsuite/gdb.multi/remove-inferiors.exp index c49b31d..d46beec 100644 --- a/gdb/testsuite/gdb.multi/remove-inferiors.exp +++ b/gdb/testsuite/gdb.multi/remove-inferiors.exp @@ -40,7 +40,7 @@ proc test_remove_inferiors { } { # Test that it is not possible to remove the current inferior. gdb_test "remove-inferiors 2" \ - "warning: Can not remove current symbol inferior 2." \ + "warning: Can not remove current inferior 2." \ "can't remove current inferior" # Test that it is possible to remove a non-active non-current inferior. |