OLD | NEW |
1 # Copyright 2010-2012 Free Software Foundation, Inc. | 1 # Copyright 2010-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 load_lib dwarf.exp | 15 load_lib dwarf.exp |
16 # Test some DWARF piece operators. | 16 # Test some DWARF piece operators. |
17 | 17 |
18 # This test can only be run on targets which support DWARF-2 and use gas. | 18 # This test can only be run on targets which support DWARF-2 and use gas. |
19 if {![dwarf2_support]} { | 19 if {![dwarf2_support]} { |
20 return 0 | 20 return 0 |
21 } | 21 } |
22 # This test can only be run on x86 targets. | 22 # This test can only be run on x86 targets. |
23 if {![is_x86_like_target]} { | 23 if {![is_x86_like_target]} { |
24 return 0 | 24 return 0 |
25 } | 25 } |
26 | 26 |
27 set testfile "pieces" | 27 standard_testfile .S |
28 set srcfile ${testfile}.S | |
29 set csrcfile ${testfile}.c | 28 set csrcfile ${testfile}.c |
30 set binfile ${objdir}/${subdir}/${testfile}.x | |
31 | 29 |
32 if {[prepare_for_testing ${testfile}.exp ${testfile}.x $srcfile]} { | 30 if {[prepare_for_testing ${testfile}.exp ${testfile} $srcfile]} { |
33 return -1 | 31 return -1 |
34 } | 32 } |
35 | 33 |
36 if ![runto_main] { | 34 if ![runto_main] { |
37 return -1 | 35 return -1 |
38 } | 36 } |
39 | 37 |
40 # Function f1 tests a particular gdb bug involving DW_OP_piece. | 38 # Function f1 tests a particular gdb bug involving DW_OP_piece. |
41 proc pieces_test_f1 {} { | 39 proc pieces_test_f1 {} { |
42 global csrcfile | 40 global csrcfile |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 -re " = 7" { | 91 -re " = 7" { |
94 pass "print a.i with optimized out piece" | 92 pass "print a.i with optimized out piece" |
95 } | 93 } |
96 } | 94 } |
97 } | 95 } |
98 | 96 |
99 pieces_test_f1 | 97 pieces_test_f1 |
100 pieces_test_f2 | 98 pieces_test_f2 |
101 pieces_test_f3 | 99 pieces_test_f3 |
102 pieces_test_f6 | 100 pieces_test_f6 |
OLD | NEW |