# Continue. The program should stop at first exception handling.
gdb_test "continue" \
- "Continuing\.$eol$catchpoint_constraint_error_msg$eol.*" \
- "continuing to first Constraint_Error exception handlers"
+ "Continuing\.$eol$catchpoint_constraint_error_msg" \
+ "continuing to first Constraint_Error exception handlers"
# Resume the program's exception.
#
# the next exception being raised.
gdb_test "continue" \
- "Continuing\.$eol$catchpoint_storage_error_msg$eol.*" \
- "continuing and stopping in Storage_Error exception handlers"
+ "Continuing\.$eol$catchpoint_storage_error_msg" \
+ "continuing and stopping in Storage_Error exception handlers"
gdb_test_no_output "delete 2" \
"delete catchpoint on all Ada exceptions handlers"
# Continue, we should not stop at ABORT_SIGNAL but at Program_Error one.
gdb_test "continue" \
- "Continuing\.$eol$catchpoint_program_error_msg$eol.*" \
- "continuing without stopping to Program_Error exception handlers"
+ "Continuing\.$eol$catchpoint_program_error_msg" \
+ "continuing without stopping to Program_Error exception handlers"
gdb_test_no_output \
"delete 3" \
# Continue, we should stop at Storage_Error handlers.
gdb_test "continue" \
- "Continuing\.$eol$catchpoint_storage_error_msg$eol.*" \
- "continuing without stopping to Storage_Error exception handlers"
+ "Continuing\.$eol$catchpoint_storage_error_msg" \
+ "continuing without stopping to Storage_Error exception handlers"
gdb_test_no_output \
"delete 4" \
# Continue, we should not stop at ABORT_SIGNAL but at Program_Error one.
gdb_test "continue" \
- "Continuing\.$eol$catchpoint_constraint_error_msg$eol.*" \
- "continuing to second Constraint_Error exception handlers"
+ "Continuing\.$eol$catchpoint_constraint_error_msg" \
+ "continuing to second Constraint_Error exception handlers"
gdb_test_no_output \
"delete 5" \
# the second one.
gdb_test "continue" \
- "Continuing\.$eol$catchpoint_program_error_msg$eol.*" \
- "continuing to Program_Error exception handlers"
+ "Continuing\.$eol$catchpoint_program_error_msg" \
+ "continuing to Program_Error exception handlers"
# Continue, the program should exit properly.