diff options
author | Siva Chandra Reddy <sivachandra@sourceware.org> | 2013-02-21 01:46:57 +0000 |
---|---|---|
committer | Siva Chandra Reddy <sivachandra@sourceware.org> | 2013-02-21 01:46:57 +0000 |
commit | 9f44fbc03496a470cf661d011d9bcdcf21859726 (patch) | |
tree | 9fd2d9e47afdc5718ea6dcb017ca812df8bcb30e /gdb/testsuite | |
parent | d373aa7be9bbd3d47988652ba59496db34b0d246 (diff) | |
download | gdb-9f44fbc03496a470cf661d011d9bcdcf21859726.zip gdb-9f44fbc03496a470cf661d011d9bcdcf21859726.tar.gz gdb-9f44fbc03496a470cf661d011d9bcdcf21859726.tar.bz2 |
Add a new method 'disassemble' to gdb.Architecture class.
* python/py-arch.c (archpy_disassmble): Implementation of the
new method gdb.Architecture.disassemble.
(arch_object_methods): Add entry for the new method.
* doc/gdb.texinfo (Architectures In Python): Add description
about the new method gdb.Architecture.disassemble.
* testsuite/gdb.python/py-arch.c: New test case
* testsuite/gdb.python/py-arch.exp: New tests to test
gdb.Architecture.disassemble
* testsuite/gdb.python/Makefile.in: Add py-arch to the list of
EXECUTABLES.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 8 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/Makefile.in | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-arch.c | 23 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-arch.exp | 54 |
4 files changed, 86 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 60c6bf8..3a8a8e1 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2013-02-20 Siva Chandra Reddy <sivachandra@google.com> + + * gdb.python/py-arch.c: New test case + * gdb.python/py-arch.exp: New tests to test + gdb.Architecture.disassemble + * gdb.python/Makefile.in: Add py-arch to the list of + EXECUTABLES. + 2013-02-18 Tom Tromey <tromey@redhat.com> * gdb.dwarf2/subrange.exp: New file. diff --git a/gdb/testsuite/gdb.python/Makefile.in b/gdb/testsuite/gdb.python/Makefile.in index 4e286b5..0b81507 100644 --- a/gdb/testsuite/gdb.python/Makefile.in +++ b/gdb/testsuite/gdb.python/Makefile.in @@ -6,7 +6,7 @@ EXECUTABLES = py-type py-value py-prettyprint py-template py-block \ py-shared python lib-types py-events py-evthreads py-frame \ py-mi py-pp-maint py-progspace py-section-script py-objfile \ py-finish-breakpoint py-finish-breakpoint2 py-value-cc py-explore \ - py-explore-cc + py-explore-cc py-arch MISCELLANEOUS = py-shared-sl.sl py-events-shlib.so py-events-shlib-nodebug.so diff --git a/gdb/testsuite/gdb.python/py-arch.c b/gdb/testsuite/gdb.python/py-arch.c new file mode 100644 index 0000000..e2fe55c --- /dev/null +++ b/gdb/testsuite/gdb.python/py-arch.c @@ -0,0 +1,23 @@ +/* This testcase is part of GDB, the GNU debugger. + + Copyright 2013 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +int +main (void) +{ + return 0; +} diff --git a/gdb/testsuite/gdb.python/py-arch.exp b/gdb/testsuite/gdb.python/py-arch.exp new file mode 100644 index 0000000..4e736b8 --- /dev/null +++ b/gdb/testsuite/gdb.python/py-arch.exp @@ -0,0 +1,54 @@ +# Copyright 2013 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +standard_testfile + +if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } { + return -1 +} + +# Skip all tests if Python scripting is not enabled. +if { [skip_python_tests] } { continue } + +if ![runto_main] { + return -1 +} + +gdb_py_test_silent_cmd "python frame = gdb.selected_frame()" "get frame" 0 +gdb_py_test_silent_cmd "python arch = frame.architecture()" "get arch" 0 +gdb_py_test_silent_cmd "python pc = frame.pc()" "get pc" 0 +gdb_py_test_silent_cmd "python insn_list1 = arch.disassemble(pc, pc, 1)" \ + "disassemble" 0 +gdb_py_test_silent_cmd "python insn_list2 = arch.disassemble(pc, pc)" \ + "disassemble no count" 0 +gdb_py_test_silent_cmd "python insn_list3 = arch.disassemble(pc, count=1)" \ + "disassemble no end" 0 +gdb_py_test_silent_cmd "python insn_list4 = arch.disassemble(pc)" \ + "disassemble no end no count" 0 + +gdb_test "python print len(insn_list1)" "1" "test number of instructions 1" +gdb_test "python print len(insn_list2)" "1" "test number of instructions 2" +gdb_test "python print len(insn_list3)" "1" "test number of instructions 3" +gdb_test "python print len(insn_list4)" "1" "test number of instructions 4" + +gdb_py_test_silent_cmd "python insn = insn_list1\[0\]" "get instruction" 0 + +gdb_test "python print \"addr\" in insn" "True" "test key addr" +gdb_test "python print \"asm\" in insn" "True" "test key asm" +gdb_test "python print \"length\" in insn" "True" "test key length" + +# Negative test +gdb_test "python arch.disassemble(0, 0)" ".*gdb\.MemoryError.*" \ + "test exception" |