Adds a test that using @entry for a non-parameter, or for an unknown
symbol, both give the expected error. This error message was
previously untested.
gdb/testsuite/ChangeLog:
* gdb.arch/amd64-entry-value.exp: Test using @entry on a
non-parameter, and on an unknown symbol.
+2018-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
+
+ * gdb.arch/amd64-entry-value.exp: Test using @entry on a
+ non-parameter, and on an unknown symbol.
+
2018-01-19 Tom Tromey <tom@tromey.com>
* gdb.rust/modules.rs (TWENTY_THREE): New global.
gdb_test "p da" " = 4\\.5" "entry_stack: p da"
gdb_test "p da@entry" " = 12\\.5" "entry_stack: p da@entry"
+# Test @entry values for a static file scoped variable, and for an
+# unknown symbol. Both of these should give an error.
+gdb_test "p v@entry" \
+ "@entry can be used only for function parameters, not for \"v\"" \
+ "attempt to print global v@entry"
+gdb_test "p unknown@entry" \
+ "@entry can be used only for function parameters, not for \"unknown\"" \
+ "attempt to print unknown@entry"
# Test various kinds of `set print entry-values'.