diff options
author | Stefan Hajnoczi <stefanha@gmail.com> | 2008-06-05 15:31:48 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-06-30 19:19:48 +0100 |
commit | 59b5465b30733dcd457698606b6de7cf31a3882d (patch) | |
tree | b8d901a0eac8eb805cc687d8883d9ee5b81a7195 /src/tests/gdbstub_test.S | |
parent | 27731d975ebac0bb70d7a9a4dd3f98698bfd5765 (diff) | |
download | ipxe-59b5465b30733dcd457698606b6de7cf31a3882d.tar.gz |
[GDB] Handle kill and detach packets.
This commit also includes a test to ensure that single stepping works,
since continue, kill, detach, and single step all share code.
Diffstat (limited to 'src/tests/gdbstub_test.S')
-rw-r--r-- | src/tests/gdbstub_test.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tests/gdbstub_test.S b/src/tests/gdbstub_test.S index ee594ea8..64783089 100644 --- a/src/tests/gdbstub_test.S +++ b/src/tests/gdbstub_test.S @@ -25,5 +25,9 @@ gdbstub_test: int $3 addl $8, %esp + /* 5. Step test */ + int $3 + nop + 1: jmp 1b |