]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/page.exp
250f4165d543feaa78c5f0d970d026a478ebe750
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / page.exp
1 # Copyright 1992-2015 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 # This file was written by Fred Fish. (fnf@cygnus.com)
17
18 gdb_exit
19 gdb_start
20
21 gdb_test_no_output "set pagination off"
22 gdb_test "show pagination" "State of pagination is off.*" "pagination is off"
23 gdb_test_sequence "help" "unpaged help" {
24 "List of classes of commands:"
25 ""
26 "aliases -- Aliases of other commands"
27 "breakpoints -- Making program stop at certain points"
28 "data -- Examining data"
29 "files -- Specifying and examining files"
30 "internals -- Maintenance commands"
31 "obscure -- Obscure features"
32 "running -- Running the program"
33 "stack -- Examining the stack"
34 "status -- Status inquiries"
35 "support -- Support facilities"
36 "tracepoints -- Tracing of program execution without stopping the program"
37 "user-defined -- User-defined commands"
38 ""
39 "Type .help. followed by a class name for a list of commands in that class."
40 "Type .help. followed by command name for full documentation."
41 "Command name abbreviations are allowed if unambiguous."
42 }
43
44
45 gdb_test_no_output "set pagination on"
46 gdb_test "show pagination" "State of pagination is on.*" "pagination is on"
47 gdb_test_no_output "set height 10"
48 send_gdb "help\n"
49 gdb_expect_list "paged help" \
50 ".*---Type <return> to continue, or q <return> to quit---" {
51 "List of classes of commands:"
52 ""
53 "aliases -- Aliases of other commands"
54 "breakpoints -- Making program stop at certain points"
55 "data -- Examining data"
56 "files -- Specifying and examining files"
57 "internals -- Maintenance commands"
58 "obscure -- Obscure features"
59 "running -- Running the program"
60 }
61 gdb_test "q"
62
63
64 gdb_exit
65 return 0
66