| OLD | NEW |
| 1 # Copyright 1998-1999, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 1998-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. |
| 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 # This file was written by Elena Zannoni (ezannoni@cygnus.com) | 16 # This file was written by Elena Zannoni (ezannoni@cygnus.com) |
| 17 | 17 |
| 18 # This file is part of the gdb testsuite | 18 # This file is part of the gdb testsuite |
| 19 # | 19 # |
| 20 # tests for all the assignemnt operators | 20 # tests for all the assignemnt operators |
| 21 # with mixed types and with int type variables | 21 # with mixed types and with int type variables |
| 22 # | 22 # |
| 23 | 23 |
| 24 # | 24 # |
| 25 # test running programs | 25 # test running programs |
| 26 # | 26 # |
| 27 | 27 |
| 28 set testfile "all-types" | 28 standard_testfile all-types.c |
| 29 set srcfile ${testfile}.c | |
| 30 set binfile ${objdir}/${subdir}/${testfile} | |
| 31 | 29 |
| 32 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug nowarnings}] != "" } { | 30 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug nowarnings}] != "" } { |
| 33 untested assign.exp | 31 untested assign.exp |
| 34 return -1 | 32 return -1 |
| 35 } | 33 } |
| 36 | 34 |
| 37 | 35 |
| 38 | 36 clean_restart ${binfile} |
| 39 gdb_exit | |
| 40 gdb_start | |
| 41 gdb_reinitialize_dir $srcdir/$subdir | |
| 42 gdb_load ${binfile} | |
| 43 | 37 |
| 44 | 38 |
| 45 # | 39 # |
| 46 # set it up at a breakpoint so we can play with the variable values | 40 # set it up at a breakpoint so we can play with the variable values |
| 47 # | 41 # |
| 48 | 42 |
| 49 if ![runto_main] then { | 43 if ![runto_main] then { |
| 50 perror "couldn't run to breakpoint" | 44 perror "couldn't run to breakpoint" |
| 51 continue | 45 continue |
| 52 } | 46 } |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 } | 189 } |
| 196 } | 190 } |
| 197 | 191 |
| 198 gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (18)" | 192 gdb_test_no_output "set variable v_int = 6" "set v_int to 6 (18)" |
| 199 | 193 |
| 200 gdb_test_multiple "print v_int+=v_double" "v_int+=double" { | 194 gdb_test_multiple "print v_int+=v_double" "v_int+=double" { |
| 201 -re " = 206.*$gdb_prompt $" { | 195 -re " = 206.*$gdb_prompt $" { |
| 202 gdb_test "print v_int" " = 206" "v_int+=double" | 196 gdb_test "print v_int" " = 206" "v_int+=double" |
| 203 } | 197 } |
| 204 } | 198 } |
| OLD | NEW |