78df18d9e96f297be3bfad737bc4d90cc8aefb94
[binutils-gdb.git] / gdb / testsuite / gdb.disasm / basics.exp
1 # Copyright (C) 2023 Free Software Foundation, Inc.
2
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.
7 #
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.
12 #
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/>.
15
16 # Some basic tests of the disassemble command. Tests in this script
17 # should be architecture independent.
18
19 standard_testfile
20
21 if { [prepare_for_testing "failed to prepare" $testfile ${srcfile}] == -1 } {
22 return -1
23 }
24
25 if ![runto_main] {
26 return -1
27 }
28
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\\."
34
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\\."