[PUSHED] gdb/testsuite: escape '*' character in pattern used by flang

Andrew Burgess andrew.burgess@embecosm.com
Wed Jun 2 09:14:17 GMT 2021


One of the integer type patterns used by flang included a '*'
character which was not escaped.

gdb/testsuite/ChangeLog:

	* lib/fortran.exp (fortran_int8): Escape '*' in pattern.
---
 gdb/testsuite/ChangeLog       | 4 ++++
 gdb/testsuite/lib/fortran.exp | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdb/testsuite/lib/fortran.exp b/gdb/testsuite/lib/fortran.exp
index 35db863e9c8..f8c442fd09c 100644
--- a/gdb/testsuite/lib/fortran.exp
+++ b/gdb/testsuite/lib/fortran.exp
@@ -49,7 +49,7 @@ proc fortran_int8 {} {
     } elseif {[test_compiler_info {gcc-*}]} {
 	return "integer\\(kind=8\\)"
     } elseif {[test_compiler_info {clang-*}]} {
-	return "integer*8"
+	return "integer\\*8"
     } elseif {[test_compiler_info {icc-*}]} {
 	return "INTEGER\\(8\\)"
     } else {
-- 
2.25.4



More information about the Gdb-patches mailing list