| OLD | NEW |
| 1 # Copyright (C) 2012 Free Software Foundation, Inc. | 1 # Copyright (C) 2012-2013 Free Software Foundation, Inc. |
| 2 # | 2 # |
| 3 # This program is free software; you can redistribute it and/or modify | 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 | 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 | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 40 if [supports_process_record] { | 40 if [supports_process_record] { |
| 41 gdb_test_no_output "record" | 41 gdb_test_no_output "record" |
| 42 } | 42 } |
| 43 | 43 |
| 44 gdb_test "next" {f \(\);} "next to f" | 44 gdb_test "next" {f \(\);} "next to f" |
| 45 gdb_test "next" {v = 3;} "next to v = 3" | 45 gdb_test "next" {v = 3;} "next to v = 3" |
| 46 | 46 |
| 47 # FAIL was: | 47 # FAIL was: |
| 48 # 29 g (); | 48 # 29 g (); |
| 49 gdb_test "reverse-next" {f \(\);} | 49 gdb_test "reverse-next" {f \(\);} |
| OLD | NEW |