revert previous patch
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / page.exp
CommitLineData
4c38e0a4 1# Copyright 1992, 1994, 1995, 1999, 2002, 2007, 2008, 2009, 2010
9b254dd1 2# Free Software Foundation, Inc.
74cf1395
JM
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
74cf1395
JM
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>. */
74cf1395 16
74cf1395
JM
17# This file was written by Fred Fish. (fnf@cygnus.com)
18
19if $tracelevel {
20 strace $tracelevel
21}
22
74cf1395
JM
23gdb_exit
24gdb_start
b5356753 25
27d3a1a2 26gdb_test_no_output "set pagination off"
b5356753
AC
27gdb_test "show pagination" "State of pagination is off.*" "pagination is off"
28send_gdb "help\n"
29gdb_expect_list "unpaged help" ".*$gdb_prompt $" {
30 "List of classes of commands:"
31 ""
32 "aliases -- Aliases of other commands"
33 "breakpoints -- Making program stop at certain points"
34 "data -- Examining data"
35 "files -- Specifying and examining files"
36 "internals -- Maintenance commands"
37 "obscure -- Obscure features"
38 "running -- Running the program"
39 "stack -- Examining the stack"
40 "status -- Status inquiries"
41 "support -- Support facilities"
42 "tracepoints -- Tracing of program execution without stopping the program"
43 "user-defined -- User-defined commands"
44 ""
45 "Type .help. followed by a class name for a list of commands in that class."
46 "Type .help. followed by command name for full documentation."
47 "Command name abbreviations are allowed if unambiguous."
48}
49
50
27d3a1a2 51gdb_test_no_output "set pagination on"
b5356753 52gdb_test "show pagination" "State of pagination is on.*" "pagination is on"
27d3a1a2 53gdb_test_no_output "set height 10"
b5356753
AC
54send_gdb "help\n"
55gdb_expect_list "paged help" \
56 ".*---Type <return> to continue, or q <return> to quit---" {
57 "List of classes of commands:"
58 ""
59 "aliases -- Aliases of other commands"
60 "breakpoints -- Making program stop at certain points"
61 "data -- Examining data"
62 "files -- Specifying and examining files"
63 "internals -- Maintenance commands"
64 "obscure -- Obscure features"
65 "running -- Running the program"
66}
67gdb_test "q"
68
74cf1395
JM
69
70gdb_exit
71return 0
72
This page took 0.98907 seconds and 4 git commands to generate.