| 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 | 15 |
| 16 # Tests of agent expression handling. | 16 # Tests of agent expression handling. |
| 17 | 17 |
| 18 # The tests that use the maintenance command do not need tracepoint | 18 # The tests that use the maintenance command do not need tracepoint |
| 19 # support on the target, but they do want a live program. | 19 # support on the target, but they do want a live program. |
| 20 | 20 |
| 21 load_lib "trace-support.exp"; | 21 load_lib "trace-support.exp"; |
| 22 | 22 |
| 23 if $tracelevel then { | |
| 24 strace $tracelevel | |
| 25 } | |
| 26 | |
| 27 | 23 |
| 28 gdb_exit | 24 gdb_exit |
| 29 gdb_start | 25 gdb_start |
| 30 set testfile "actions" | 26 standard_testfile actions.c |
| 31 set srcfile ${testfile}.c | |
| 32 set binfile $objdir/$subdir/ax | |
| 33 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ | 27 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ |
| 34 executable {debug nowarnings}] != "" } { | 28 executable {debug nowarnings}] != "" } { |
| 35 untested ax.exp | 29 untested ax.exp |
| 36 return -1 | 30 return -1 |
| 37 } | 31 } |
| 38 | 32 |
| 39 gdb_load $binfile | 33 gdb_load $binfile |
| 40 runto_main | 34 runto_main |
| 41 gdb_reinitialize_dir $srcdir/$subdir | 35 gdb_reinitialize_dir $srcdir/$subdir |
| 42 | 36 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 gdb_test "maint agent-eval gdb_long_test <= gdb_short_test" "" "maint agent-eval
gdb_long_test <= gdb_short_test" | 121 gdb_test "maint agent-eval gdb_long_test <= gdb_short_test" "" "maint agent-eval
gdb_long_test <= gdb_short_test" |
| 128 | 122 |
| 129 gdb_test "maint agent-eval gdb_long_test > gdb_short_test" "" "maint agent-eval
gdb_long_test > gdb_short_test" | 123 gdb_test "maint agent-eval gdb_long_test > gdb_short_test" "" "maint agent-eval
gdb_long_test > gdb_short_test" |
| 130 | 124 |
| 131 gdb_test "maint agent-eval gdb_long_test >= gdb_short_test" "" "maint agent-eval
gdb_long_test >= gdb_short_test" | 125 gdb_test "maint agent-eval gdb_long_test >= gdb_short_test" "" "maint agent-eval
gdb_long_test >= gdb_short_test" |
| 132 | 126 |
| 133 gdb_test "maint agent-eval &gdb_long_test == &gdb_short_test" ".*equal.*end.*" "
maint agent-eval &gdb_long_test == &gdb_short_test" | 127 gdb_test "maint agent-eval &gdb_long_test == &gdb_short_test" ".*equal.*end.*" "
maint agent-eval &gdb_long_test == &gdb_short_test" |
| 134 | 128 |
| 135 gdb_test "maint agent-eval &gdb_long_test < &gdb_short_test" "" "maint agent-eva
l &gdb_long_test < &gdb_short_test" | 129 gdb_test "maint agent-eval &gdb_long_test < &gdb_short_test" "" "maint agent-eva
l &gdb_long_test < &gdb_short_test" |
| 136 | 130 |
| OLD | NEW |