| OLD | NEW |
| 1 # Copyright (C) 2001, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright (C) 2001-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 # Written by Michael Snyder, Red Hat, Inc., 9/20/2001 | 16 # Written by Michael Snyder, Red Hat, Inc., 9/20/2001 |
| 17 | 17 |
| 18 # This file is part of the gdb testsuite | 18 # This file is part of the gdb testsuite |
| 19 # Tests for type expressions using const and volatile keywords. | 19 # Tests for type expressions using const and volatile keywords. |
| 20 | 20 |
| 21 # | 21 # |
| 22 # test running programs | 22 # test running programs |
| 23 # | 23 # |
| 24 | 24 |
| 25 set testfile "cvexpr" | 25 standard_testfile .c |
| 26 set srcfile ${testfile}.c | |
| 27 set binfile ${objdir}/${subdir}/${testfile} | |
| 28 | 26 |
| 29 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug}] != "" } { | 27 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug}] != "" } { |
| 30 untested cvexpr.exp | 28 untested cvexpr.exp |
| 31 return -1 | 29 return -1 |
| 32 } | 30 } |
| 33 | 31 |
| 34 gdb_exit | 32 clean_restart ${binfile} |
| 35 gdb_start | |
| 36 gdb_reinitialize_dir $srcdir/$subdir | |
| 37 gdb_load ${binfile} | |
| 38 | 33 |
| 39 gdb_test_no_output "set print sevenbit-strings" | 34 gdb_test_no_output "set print sevenbit-strings" |
| 40 gdb_test_no_output "set print address off" | 35 gdb_test_no_output "set print address off" |
| 41 gdb_test_no_output "set width 0" | 36 gdb_test_no_output "set width 0" |
| 42 | 37 |
| 43 set ws "\[ \t\]*" | 38 set ws "\[ \t\]*" |
| 44 | 39 |
| 45 # | 40 # |
| 46 # Test casting a scalar to const | 41 # Test casting a scalar to const |
| 47 # | 42 # |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 "type = const struct t_struct${ws}\\*${ws}const" \ | 483 "type = const struct t_struct${ws}\\*${ws}const" \ |
| 489 "(struct t_struct const * const)" | 484 "(struct t_struct const * const)" |
| 490 gdb_test "whatis (union t_union const * const) &v_union" \ | 485 gdb_test "whatis (union t_union const * const) &v_union" \ |
| 491 "type = const union t_union${ws}\\*${ws}const" \ | 486 "type = const union t_union${ws}\\*${ws}const" \ |
| 492 "(union t_union const * const)" | 487 "(union t_union const * const)" |
| 493 | 488 |
| 494 # | 489 # |
| 495 # Function pointers TODO | 490 # Function pointers TODO |
| 496 # | 491 # |
| 497 | 492 |
| OLD | NEW |