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

Side by Side Diff: gdb/testsuite/gdb.cp/overload.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.cp/overload.cc ('k') | gdb/testsuite/gdb.cp/overload-const.exp » ('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 1998-2004, 2007-2012 Free Software Foundation, Inc. 1 # Copyright 1998-2004, 2007-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 # written by Elena Zannoni (ezannoni@cygnus.com) 16 # written by Elena Zannoni (ezannoni@cygnus.com)
17 # Rewritten by Michael Chastain <mec.gnu@mindspring.com> 17 # Rewritten by Michael Chastain <mec.gnu@mindspring.com>
18 18
19 # This file is part of the gdb testsuite 19 # This file is part of the gdb testsuite
20 20
21 # Tests for overloaded member functions. 21 # Tests for overloaded member functions.
22 22
23 if $tracelevel then {
24 strace $tracelevel
25 }
26
27 set ws "\[\r\n\t \]+" 23 set ws "\[\r\n\t \]+"
28 set nl "\[\r\n\]+" 24 set nl "\[\r\n\]+"
29 25
30 26
31 if { [skip_cplus_tests] } { continue } 27 if { [skip_cplus_tests] } { continue }
32 28
33 set testfile "overload" 29 standard_testfile .cc
34 set srcfile ${testfile}.cc
35 set binfile ${objdir}/${subdir}/${testfile}
36 30
37 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb ug c++}] != "" } { 31 if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} {
38 untested overload.exp 32 return -1
39 return -1
40 } 33 }
41 34
42 gdb_exit
43 gdb_start
44 gdb_reinitialize_dir $srcdir/$subdir
45 gdb_load ${binfile}
46
47 # Set it up at a breakpoint so we can play with the variable values. 35 # Set it up at a breakpoint so we can play with the variable values.
48 36
49 if ![runto 'marker1'] then { 37 if ![runto 'marker1'] then {
50 perror "couldn't run to marker1" 38 perror "couldn't run to marker1"
51 continue 39 continue
52 } 40 }
53 41
54 gdb_test "up" ".*main.*" "up from marker1" 42 gdb_test "up" ".*main.*" "up from marker1"
55 43
56 # Print the monster class type. 44 # Print the monster class type.
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 "\\$$decimal = {int \\(foo \\*( const|)\\)} $hex <foo::overload1arg\\(\\)>" \ 350 "\\$$decimal = {int \\(foo \\*( const|)\\)} $hex <foo::overload1arg\\(\\)>" \
363 "print foo::overload1arg(void)" 351 "print foo::overload1arg(void)"
364 352
365 foreach t [list char "signed char" "unsigned char" "short" \ 353 foreach t [list char "signed char" "unsigned char" "short" \
366 "unsigned short" int "unsigned int" long "unsigned long" \ 354 "unsigned short" int "unsigned int" long "unsigned long" \
367 float double] { 355 float double] {
368 gdb_test "print foo::overload1arg($t)" \ 356 gdb_test "print foo::overload1arg($t)" \
369 "\\$$decimal = {int \\(foo \\*( const|), $t\\)} $hex <foo::overload1arg\ \($t\\)>" \ 357 "\\$$decimal = {int \\(foo \\*( const|), $t\\)} $hex <foo::overload1arg\ \($t\\)>" \
370 "print foo::overload1arg($t)" 358 "print foo::overload1arg($t)"
371 } 359 }
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.cp/overload.cc ('k') | gdb/testsuite/gdb.cp/overload-const.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698