diff options
author | Catherine Moore <clm@codesourcery.com> | 2016-11-11 07:42:37 -0800 |
---|---|---|
committer | Catherine Moore <clm@codesourcery.com> | 2016-11-11 07:42:37 -0800 |
commit | 1f8db343049c3e06483a278e14b7e140ec55c8b3 (patch) | |
tree | 5892a72a63f57f03492629683392785e654f42c0 | |
parent | 86b80085c889cd388fa677a5ae9053fd4be3776c (diff) | |
download | gdb-1f8db343049c3e06483a278e14b7e140ec55c8b3.zip gdb-1f8db343049c3e06483a278e14b7e140ec55c8b3.tar.gz gdb-1f8db343049c3e06483a278e14b7e140ec55c8b3.tar.bz2 |
Identify verilog dump tests as such.
A couple of the verilog dump tests were marked as ihex tests. This
patch identifies the tests as verilog format dump tests.
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/dump.exp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index b2fc137..054629f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-11-11 Catherine Moore <clm@codesourcery.com> + + * gdb.base/dump.exp: Identify verilog format dump tests as such. + 2016-11-09 Pedro Alves <palves@redhat.com> * gdb.base/commands.exp (runto_or_return): New procedure. diff --git a/gdb/testsuite/gdb.base/dump.exp b/gdb/testsuite/gdb.base/dump.exp index 289abb5..a38f9d1 100644 --- a/gdb/testsuite/gdb.base/dump.exp +++ b/gdb/testsuite/gdb.base/dump.exp @@ -152,10 +152,10 @@ make_dump_file "dump tekhex val [set intstr1.tekhex] intstruct" \ "dump struct as value, tekhex" make_dump_file "dump verilog val [set intarr1.verilog] intarray" \ - "dump array as value, intel hex" + "dump array as value, verilog" make_dump_file "dump verilog val [set intstr1.verilog] intstruct" \ - "dump struct as value, intel hex" + "dump struct as value, verilog" proc capture_value { expression args } { global gdb_prompt |