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

Side by Side Diff: gdb/testsuite/gdb.reverse/singlejmp-reverse.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
OLDNEW
(Empty)
1 # Copyright (C) 2012 Free Software Foundation, Inc.
2 #
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
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/>.
15
16 if ![supports_reverse] {
17 return
18 }
19
20 standard_testfile ".S" "${gdb_test_file_name}-nodebug.S"
21 set executable ${testfile}
22
23 if [info exists COMPILE] {
24 # make check RUNTESTFLAGS="gdb.reverse/singlejmp-reverse.exp COMPILE=1"
25 if { [build_executable_from_specs ${testfile}.exp $executable {} \
26 ${testfile}.c {debug optimize=-O2} \
27 ${testfile}-nodebug.c {optimize=-O2} \
28 ] == -1 } {
29 return -1
30 }
31 } elseif { ![istarget x86_64-*-* ] || ![is_lp64_target] } {
32 verbose "Skipping ${testfile}."
33 return
34 } elseif { [build_executable ${testfile}.exp ${testfile} \
35 [list ${srcfile} ${srcfile2}] {}] == -1 } {
36 return -1
37 }
38
39 clean_restart $executable
40
41 if ![runto_main] {
42 return -1
43 }
44
45 if [supports_process_record] {
46 gdb_test_no_output "record"
47 }
48
49 gdb_test "next" {v = 1;} "next to v = 1"
50 gdb_test "next" {f \(\);} "next to f"
51 gdb_test "next" {nodebug \(\);} "next to nodebug"
52 gdb_test "next" {v = 3;} "next to v = 3"
53
54 # FAIL was:
55 # No more reverse-execution history.
56 # {
57 gdb_test "reverse-step" {nodebug \(\);}
58
59 # FAIL was:
60 # No more reverse-execution history.
61 # {
62 gdb_test "reverse-next" {f \(\);}
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.reverse/singlejmp-reverse.c ('k') | gdb/testsuite/gdb.reverse/singlejmp-reverse-nodebug.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698