Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: gdb/testsuite/gdb.base/nextoverexit.exp

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/testsuite/gdb.base/nextoverexit.c ('k') | gdb/testsuite/gdb.base/nodebug.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 2010-2012 Free Software Foundation, Inc. 1 # Copyright 2012 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify 2 # 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 3 # 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 4 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version. 5 # (at your option) any later version.
7 # 6 #
8 # This program is distributed in the hope that it will be useful, 7 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details. 10 # GNU General Public License for more details.
12 # 11 #
13 # You should have received a copy of the GNU General Public License 12 # 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/>. 13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 14
16 set testfile moribund-step 15 set testfile "nextoverexit"
16 set executable $testfile
17 set srcfile $testfile.c
18 set binfile $objdir/$subdir/$testfile
17 19
18 if { ![support_displaced_stepping] } { 20 if {[prepare_for_testing $testfile.exp $testfile $testfile.c]} {
19 unsupported "displaced stepping"
20 return -1 21 return -1
21 } 22 }
22 23
23 if { [prepare_for_testing ${testfile}.exp ${testfile} start.c] } { 24 if {![runto_main]} {
24 return -1 25 return -1
25 } 26 }
26 27
27 gdb_test_no_output "set non-stop on" 28 # Make sure we do not see any warnings.
28 29 gdb_test_multiple "next" "next over exit" {
29 if ![runto_main] { 30 -re "$inferior_exited_re normally.\[\r\n\]+$gdb_prompt $" {
30 return 31 » pass "next over exit"
32 }
31 } 33 }
32
33 # GDB could crash on printing breakpoint hit on a moribund bp_location.
34 gdb_test "step"
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/nextoverexit.c ('k') | gdb/testsuite/gdb.base/nodebug.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698