diff options
author | Luis Machado <luisgpm@br.ibm.com> | 2012-02-24 15:17:41 +0000 |
---|---|---|
committer | Luis Machado <luisgpm@br.ibm.com> | 2012-02-24 15:17:41 +0000 |
commit | 8d126d8a7aca0e005a8aabc3d8ba101d2ad9595e (patch) | |
tree | 4f2673c9398a1998e8efceaf77713ce21c2614c1 /gdb/testsuite | |
parent | 9f3a5c850eddd9e804c20a9c664e90b9e3d14140 (diff) | |
download | gdb-8d126d8a7aca0e005a8aabc3d8ba101d2ad9595e.zip gdb-8d126d8a7aca0e005a8aabc3d8ba101d2ad9595e.tar.gz gdb-8d126d8a7aca0e005a8aabc3d8ba101d2ad9595e.tar.bz2 |
2012-02-24 Luis Machado <lgustavo@codesourcery.com>
* gdb.base/cond-eval-mode.exp: New file.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/cond-eval-mode.exp | 44 |
2 files changed, 48 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index a2deeae..80e21b3 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2012-02-24 Luis Machado <lgustavo@codesourcery.com> + + * gdb.base/cond-eval-mode.exp: New file. + 2012-02-24 Pedro Alves <palves@redhat.com> * gdb.base/break-interp.exp (test_ld): Use with_test_prefix. diff --git a/gdb/testsuite/gdb.base/cond-eval-mode.exp b/gdb/testsuite/gdb.base/cond-eval-mode.exp new file mode 100644 index 0000000..dbbfc28 --- /dev/null +++ b/gdb/testsuite/gdb.base/cond-eval-mode.exp @@ -0,0 +1,44 @@ +# Copyright 2012 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +# Test 'set breakpoint condition-evaluation' settings + +if { [prepare_for_testing break.exp "break" {break.c break1.c}] } { + return -1 +} + +runto main + +set test_host "set breakpoint condition-evaluation host" +set test_auto "set breakpoint condition-evaluation auto" +set test_target "set breakpoint condition-evaluation target" + +gdb_test_no_output $test_host +gdb_test_no_output $test_auto + +# If target-side condition evaluation is not supported, this warning will be +# displayed. +set warning "warning: Target does not support breakpoint condition evaluation.\r\nUsing GDB evaluation mode instead.\r\n" + +gdb_test_multiple $test_target $test_target { + -re "$warning$gdb_prompt $" { + unsupported $test_target + return -1 + } + + -re "^$test_target\r\n$gdb_prompt $" { + pass $test_target + } +} |