mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 15:15:42 +00:00
In commit a98a6fa2d8 ("s390: Add arch15 instructions"), support for
new instructions was added to libopcodes, but the added tests only exercise
this for gas.
Add a unit test disassemble-s390x that checks gdb's ability to
disassemble one of these instructions:
...
$ gdb -q -batch -ex "maint selftest -v disassemble-s390x"
Running selftest disassemble-s390x.
0xb9 0x68 0x00 0x03 -> clzg %r0,%r3
Ran 1 unit tests, 0 failed
...
Tested on x86_64-linux and s390x-linux.
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
/* Copyright (C) 2025 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
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/>. */
|
|
|
|
#ifndef GDB_DISASM_SELFTESTS_H
|
|
#define GDB_DISASM_SELFTESTS_H
|
|
|
|
namespace selftests
|
|
{
|
|
|
|
/* Check that disassembly of INSN (a GDBARCH insn) matches EXPECTED. */
|
|
|
|
void
|
|
disassemble_insn (gdbarch *gdbarch, gdb::byte_vector &insn,
|
|
const std::string &expected);
|
|
|
|
}
|
|
|
|
#endif /* GDB_DISASM_SELFTESTS_H */
|