diff options
Diffstat (limited to 'gdb/testsuite/gdb.cp/temargs.exp')
-rw-r--r-- | gdb/testsuite/gdb.cp/temargs.exp | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.cp/temargs.exp b/gdb/testsuite/gdb.cp/temargs.exp new file mode 100644 index 0000000..369fcce --- /dev/null +++ b/gdb/testsuite/gdb.cp/temargs.exp @@ -0,0 +1,102 @@ +# temargs.exp - Template argument tests +# +# Copyright 2010 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/>. + +# This file is part of the gdb testsuite. + +if {$tracelevel} { + strace $tracelevel +} + +if {[skip_cplus_tests]} { + continue +} + +set testfile "temargs" +set srcfile "${testfile}.cc" + +if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} { + return -1 +} + +if {![runto_main]} { + return -1 +} + +set line [gdb_get_line_number "Breakpoint 1" $srcfile] +gdb_test "break $srcfile:$line" "Breakpoint 2.*" \ + "set first breakpoint for temargs" +set line [gdb_get_line_number "Breakpoint 2" $srcfile] +gdb_test "break $srcfile:$line" "Breakpoint 3.*" \ + "set second breakpoint for temargs" +set line [gdb_get_line_number "Breakpoint 3" $srcfile] +gdb_test "break $srcfile:$line" "Breakpoint 4.*" \ + "set third breakpoint for temargs" +set line [gdb_get_line_number "Breakpoint 4" $srcfile] +gdb_test "break $srcfile:$line" "Breakpoint 5.*" \ + "set fourth breakpoint for temargs" + +# +# Tests in Base::base_m. +# + +gdb_continue_to_breakpoint "continue to first breakpoint for temargs" + +gdb_test "ptype T" "double" "test type of T in base_m" +gdb_test "print I" " = 23" "test value of I in base_m" +gdb_test "print P == &a_global" " = true" "test value of P in base_m" +setup_kfail "gcc/41736" *-*-* +gdb_test "print MP" "&S::f" "test value of MP in base_m" + +# +# Tests in Inner::inner_m. +# + +gdb_continue_to_breakpoint "continue to second breakpoint for temargs" + +setup_kfail "gcc/45024" *-*-* +gdb_test "ptype T" "long" "test type of T in inner_m" +setup_kfail "gcc/45024" *-*-* +gdb_test "print I" " = 47" "test value of I in inner_m" +gdb_test "print P == &a_global" " = true" "test value of P in inner_m" +setup_kfail "gcc/41736" *-*-* +gdb_test "print MP" "&S::f" "test value of MP in inner_m" +gdb_test "whatis Z" "float" "test type of Z in inner_m" + +# +# Tests in func. +# + +gdb_continue_to_breakpoint "continue to third breakpoint for temargs" + +gdb_test "ptype T" "unsigned char" "test type of T in func" +gdb_test "print I" " = 91" "test value of I in func" +gdb_test "print P == &a_global" " = true" "test value of P in func" +setup_kfail "gcc/41736" *-*-* +gdb_test "print MP" "&S::f" "test value of MP in func" + +# +# Tests in Base::templ_m. +# + +gdb_continue_to_breakpoint "continue to fourth breakpoint for temargs" + +gdb_test "ptype T" "double" "test type of T in templ_m" +gdb_test "print I" " = 23" "test value of I in templ_m" +gdb_test "print P == &a_global" " = true" "test value of P in templ_m" +setup_kfail "gcc/41736" *-*-* +gdb_test "print MP" "&S::f" "test value of MP in templ_m" +gdb_test "whatis Q" "short" "test type of Q in templ_m" |