* gdb.cp/m-static.exp: Update expected test output.

This commit is contained in:
Doug Evans 2010-06-27 17:19:54 +00:00
parent 1596cb5d60
commit b2dae948d7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-06-27 Doug Evans <dje@google.com>
* gdb.cp/m-static.exp: Update expected test output.
2010-06-25 Paul Hilfinger <hilfinger@adacore.com>
* gdb.gdb/selftest.exp: Adjust expected message for

View File

@ -123,7 +123,7 @@ gdb_test "print test3.data.value_derived" "\\$\[0-9\].* = etruscan" "template ob
gdb_test "print test4.elsewhere" "\\$\[0-9\].* = 221" "static const int initialized elsewhere"
# static const int that nobody initializes. From PR gdb/635.
gdb_test "print test4.nowhere" "field nowhere is nonexistent or has been optimised out" "static const int initialized nowhere"
gdb_test "print test4.nowhere" "field nowhere is nonexistent or has been optimized out" "static const int initialized nowhere"
# Perhaps at some point test4 should also include a test for a static
# const int that was initialized in the header file. But I'm not sure