| OLD | NEW |
| 1 # Copyright 1992, 1994-1995, 1999, 2002, 2007-2012 Free Software | 1 # Copyright 1992, 1994-1995, 1999, 2002, 2007-2012 Free Software |
| 2 # Foundation, Inc. | 2 # Foundation, Inc. |
| 3 | 3 |
| 4 # This program is free software; you can redistribute it and/or modify | 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 | 5 # it under the terms of the GNU General Public License as published by |
| 6 # the Free Software Foundation; either version 3 of the License, or | 6 # the Free Software Foundation; either version 3 of the License, or |
| 7 # (at your option) any later version. | 7 # (at your option) any later version. |
| 8 # | 8 # |
| 9 # This program is distributed in the hope that it will be useful, | 9 # This program is distributed in the hope that it will be useful, |
| 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 # GNU General Public License for more details. | 12 # GNU General Public License for more details. |
| 13 # | 13 # |
| 14 # You should have received a copy of the GNU General Public License | 14 # You should have received a copy of the GNU General Public License |
| 15 # along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 15 # along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
| 16 | 16 |
| 17 # This file was written by Fred Fish. (fnf@cygnus.com) | 17 # This file was written by Fred Fish. (fnf@cygnus.com) |
| 18 | 18 |
| 19 if $tracelevel { | |
| 20 strace $tracelevel | |
| 21 } | |
| 22 | |
| 23 gdb_exit | 19 gdb_exit |
| 24 gdb_start | 20 gdb_start |
| 25 | 21 |
| 26 gdb_test_no_output "set pagination off" | 22 gdb_test_no_output "set pagination off" |
| 27 gdb_test "show pagination" "State of pagination is off.*" "pagination is off" | 23 gdb_test "show pagination" "State of pagination is off.*" "pagination is off" |
| 28 gdb_test_sequence "help" "unpaged help" { | 24 gdb_test_sequence "help" "unpaged help" { |
| 29 "List of classes of commands:" | 25 "List of classes of commands:" |
| 30 "" | 26 "" |
| 31 "aliases -- Aliases of other commands" | 27 "aliases -- Aliases of other commands" |
| 32 "breakpoints -- Making program stop at certain points" | 28 "breakpoints -- Making program stop at certain points" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 62 "internals -- Maintenance commands" | 58 "internals -- Maintenance commands" |
| 63 "obscure -- Obscure features" | 59 "obscure -- Obscure features" |
| 64 "running -- Running the program" | 60 "running -- Running the program" |
| 65 } | 61 } |
| 66 gdb_test "q" | 62 gdb_test "q" |
| 67 | 63 |
| 68 | 64 |
| 69 gdb_exit | 65 gdb_exit |
| 70 return 0 | 66 return 0 |
| 71 | 67 |
| OLD | NEW |