diff options
author | Tom Tromey <tromey@redhat.com> | 2008-08-14 18:03:22 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-08-14 18:03:22 +0000 |
commit | 886a217cf4ad31024cf799bf2803c39c07ad1d15 (patch) | |
tree | 2b9e71f2c415f3ba8b8ea95c6acab8064bc6bd7c /gdb/testsuite | |
parent | 4e96a12e094223793435f3b27e99649a3dc26f70 (diff) | |
download | gdb-886a217cf4ad31024cf799bf2803c39c07ad1d15.zip gdb-886a217cf4ad31024cf799bf2803c39c07ad1d15.tar.gz gdb-886a217cf4ad31024cf799bf2803c39c07ad1d15.tar.bz2 |
gdb:
* macrocmd.c (macro_define_command): Check for NULL argument.
(macro_undef_command): Likewise.
gdb/testsuite:
* gdb.base/macscp.exp: Add regression test for "macro define" or
"macro undef" with no arguments.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/macscp.exp | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index b00e52b..577d0eb 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-08-14 Tom Tromey <tromey@redhat.com> + + * gdb.base/macscp.exp: Add regression test for "macro define" or + "macro undef" with no arguments. + 2008-08-08 Paul Pluzhnikov <ppluzhnikov@google.com> * gdb.base/args.exp: Prevent ~/.gdbinit from affecting test. diff --git a/gdb/testsuite/gdb.base/macscp.exp b/gdb/testsuite/gdb.base/macscp.exp index 2df0eef..3424714 100644 --- a/gdb/testsuite/gdb.base/macscp.exp +++ b/gdb/testsuite/gdb.base/macscp.exp @@ -470,6 +470,16 @@ gdb_test "print M" \ "No symbol \"M\" in current context\." \ "print expression with macro after user undef." +# Regression test; this used to crash. +gdb_test "macro define" \ + "usage: macro define.*" \ + "macro define with no arguments" + +# Regression test; this used to crash. +gdb_test "macro undef" \ + "usage: macro undef.*" \ + "macro undef with no arguments" + # Regression test; this used to emit the wrong error. gdb_test "macro expand SPLICE(x, y)" \ "Token splicing is not implemented yet." \ |