| OLD | NEW |
| 1 # Copyright 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 2007-2012 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. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 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/>. | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 if $tracelevel then { | |
| 17 strace $tracelevel | |
| 18 } | |
| 19 | |
| 20 load_lib "ada.exp" | 16 load_lib "ada.exp" |
| 21 | 17 |
| 22 gdb_exit | 18 gdb_exit |
| 23 gdb_start | 19 gdb_start |
| 24 gdb_reinitialize_dir $srcdir/$subdir | 20 gdb_reinitialize_dir $srcdir/$subdir |
| 25 | 21 |
| 26 set any_nb "\[0-9\]+" | 22 set any_nb "\[0-9\]+" |
| 27 set any_addr "0x\[0-9a-zA-Z\]+" | 23 set any_addr "0x\[0-9a-zA-Z\]+" |
| 28 | 24 |
| 29 # Force the language to Ada, as this will not happen automatically | 25 # Force the language to Ada, as this will not happen automatically |
| 30 # in this case (no test program). | 26 # in this case (no test program). |
| 31 gdb_test_no_output "set lang ada" \ | 27 gdb_test_no_output "set lang ada" \ |
| 32 "Changing the language to ada" | 28 "Changing the language to ada" |
| 33 | 29 |
| 34 gdb_test "print 1 = 2" \ | 30 gdb_test "print 1 = 2" \ |
| 35 "= false" \ | 31 "= false" \ |
| 36 "print 1 = 2" | 32 "print 1 = 2" |
| 37 | 33 |
| 38 gdb_test "print 3 = 3" \ | 34 gdb_test "print 3 = 3" \ |
| 39 "= true" \ | 35 "= true" \ |
| 40 "print 3 = 3" | 36 "print 3 = 3" |
| 41 | 37 |
| OLD | NEW |