]>
Commit | Line | Data |
---|---|---|
6aba47ca | 1 | # Copyright 1992, 1994, 1995, 1999, 2002, 2007 Free Software Foundation, Inc. |
74cf1395 JM |
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 2 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, write to the Free Software | |
15 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | |
16 | ||
17 | # Please email any bugs, comments, and/or additions to this file to: | |
18 | # bug-gdb@prep.ai.mit.edu | |
19 | ||
20 | # This file was written by Fred Fish. (fnf@cygnus.com) | |
21 | ||
22 | if $tracelevel { | |
23 | strace $tracelevel | |
24 | } | |
25 | ||
26 | global message | |
27 | global timeout | |
28 | ||
29 | set timeout 200 | |
30 | ||
31 | gdb_exit | |
32 | gdb_start | |
b5356753 | 33 | |
74cf1395 | 34 | gdb_test "set pagination off" "" |
b5356753 AC |
35 | gdb_test "show pagination" "State of pagination is off.*" "pagination is off" |
36 | send_gdb "help\n" | |
37 | gdb_expect_list "unpaged help" ".*$gdb_prompt $" { | |
38 | "List of classes of commands:" | |
39 | "" | |
40 | "aliases -- Aliases of other commands" | |
41 | "breakpoints -- Making program stop at certain points" | |
42 | "data -- Examining data" | |
43 | "files -- Specifying and examining files" | |
44 | "internals -- Maintenance commands" | |
45 | "obscure -- Obscure features" | |
46 | "running -- Running the program" | |
47 | "stack -- Examining the stack" | |
48 | "status -- Status inquiries" | |
49 | "support -- Support facilities" | |
50 | "tracepoints -- Tracing of program execution without stopping the program" | |
51 | "user-defined -- User-defined commands" | |
52 | "" | |
53 | "Type .help. followed by a class name for a list of commands in that class." | |
54 | "Type .help. followed by command name for full documentation." | |
55 | "Command name abbreviations are allowed if unambiguous." | |
56 | } | |
57 | ||
58 | ||
74cf1395 | 59 | gdb_test "set pagination on" "" |
b5356753 AC |
60 | gdb_test "show pagination" "State of pagination is on.*" "pagination is on" |
61 | gdb_test "set height 10" "" | |
62 | send_gdb "help\n" | |
63 | gdb_expect_list "paged help" \ | |
64 | ".*---Type <return> to continue, or q <return> to quit---" { | |
65 | "List of classes of commands:" | |
66 | "" | |
67 | "aliases -- Aliases of other commands" | |
68 | "breakpoints -- Making program stop at certain points" | |
69 | "data -- Examining data" | |
70 | "files -- Specifying and examining files" | |
71 | "internals -- Maintenance commands" | |
72 | "obscure -- Obscure features" | |
73 | "running -- Running the program" | |
74 | } | |
75 | gdb_test "q" | |
76 | ||
74cf1395 JM |
77 | |
78 | gdb_exit | |
79 | return 0 | |
80 |