1 # Copyright 2013-2023 Free Software Foundation, Inc.
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.
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.
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/>.
18 if {[skip_cplus_tests]} {
22 if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
30 if {[skip_libstdcxx_probe_tests]} {
31 untested "could not find libstdc++ stap probe"
35 proc do_continue_to_catchpoint {name} {
38 gdb_test_multiple "continue" $name {
39 -re "Continuing.*Catchpoint \[0-9\].*\r\n$gdb_prompt $" {
45 proc do_exceptprint_tests {prefix output} {
46 with_test_prefix $prefix {
47 do_continue_to_catchpoint "continue to throw"
48 gdb_test "print \$_exception" " = $output" \
49 "print exception value at throw"
51 do_continue_to_catchpoint "continue to catch"
52 gdb_test "print \$_exception" " = $output" \
53 "print exception value at catch"
55 do_continue_to_catchpoint "continue to rethrow"
56 gdb_test "print \$_exception" " = $output" \
57 "print exception value at rethrow"
59 do_continue_to_catchpoint "continue to final catch"
63 gdb_test "catch catch" "Catchpoint \[0-9\]+ \\(catch\\)"
64 gdb_test "catch throw" "Catchpoint \[0-9\]+ \\(throw\\)"
65 gdb_test "catch rethrow" "Catchpoint \[0-9\]+ \\(rethrow\\)"
67 do_exceptprint_tests string "$hex \"hi bob\""
68 do_exceptprint_tests int 23
69 do_exceptprint_tests struct "{mv = 77}"
70 do_exceptprint_tests "reference to struct" "{mv = 77}"
79 with_test_prefix "2nd run" {
80 gdb_test "catch catch int if \$_exception == 23" \
81 "Catchpoint \[0-9\]+ \\(catch\\)" \
83 gdb_test "catch throw int if \$_exception == 23" \
84 "Catchpoint \[0-9\]+ \\(throw\\)" \
86 gdb_test "catch rethrow int if \$_exception == 23" \
87 "Catchpoint \[0-9\]+ \\(rethrow\\)" \
91 # This tests both the case where the regular expression does not
92 # match, and the case where it does.
93 with_test_prefix "2nd run" {
94 do_exceptprint_tests int 23