1 # Copyright (C) 2023-2024 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 # Some basic tests of the disassemble command. Tests in this script
17 # should be architecture independent.
21 if { [prepare_for_testing "failed to prepare" $testfile ${srcfile}] == -1 } {
29 # Check the '/s' and '/m' flags can't be used together.
30 gdb_test "disassemble /sm main" \
31 "Cannot specify both /m and /s\\."
32 gdb_test "disassemble /ms main" \
33 "Cannot specify both /m and /s\\."
35 # Check the '/r' and '/b' flags can't be used together.
36 gdb_test "disassemble /rb main" \
37 "Cannot specify both /r and /b\\."
38 gdb_test "disassemble /br main" \
39 "Cannot specify both /r and /b\\."
41 # Check disassembly using 'FILE'::FUNC syntax.
42 gdb_test "disassemble '$srcfile'::main" \
43 "Dump of assembler code for function main:.*End of assembler dump\\."