mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 13:56:22 +08:00
Fix gdb.base/msym*.exp failures
AArch64 generates functions without a prologue for these two testcases, therefore we shouldn't expect the function location to be displayed with an offset. gdb/testsuite/ChangeLog: 2020-10-22 Luis Machado <luis.machado@linaro.org> * gdb.base/msym-bp-shl.exp (test_break): Adjust pattern to not expected an offset from the function. * gdb.base/msym-bp.exp (test): Likewise.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2020-10-22 Luis Machado <luis.machado@linaro.org>
|
||||||
|
|
||||||
|
* gdb.base/msym-bp-shl.exp (test_break): Adjust pattern to not
|
||||||
|
expected an offset from the function.
|
||||||
|
* gdb.base/msym-bp.exp (test): Likewise.
|
||||||
|
|
||||||
2020-10-22 Andrew Burgess <andrew.burgess@embecosm.com>
|
2020-10-22 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
* gdb.fortran/array-slices.exp: Add a new test.
|
* gdb.fortran/array-slices.exp: Add a new test.
|
||||||
|
@ -72,7 +72,7 @@ proc test {debug} {
|
|||||||
} else {
|
} else {
|
||||||
test_info_break_2 \
|
test_info_break_2 \
|
||||||
"<foo@plt.*>" \
|
"<foo@plt.*>" \
|
||||||
"<foo\\+$decimal>"
|
"<foo(\\+$decimal)?>"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,8 +96,8 @@ proc test {debug} {
|
|||||||
"in foo at .*msym-bp-shl-lib.c:$decimal"
|
"in foo at .*msym-bp-shl-lib.c:$decimal"
|
||||||
} else {
|
} else {
|
||||||
test_info_break_2 \
|
test_info_break_2 \
|
||||||
"<foo\\+$decimal>" \
|
"<foo(\\+$decimal)?>" \
|
||||||
"<foo\\+$decimal>"
|
"<foo(\\+$decimal)?>"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -60,8 +60,8 @@ proc test {debug} {
|
|||||||
"in foo at .*msym-bp-2.c:$decimal"
|
"in foo at .*msym-bp-2.c:$decimal"
|
||||||
} else {
|
} else {
|
||||||
test_info_break_2 \
|
test_info_break_2 \
|
||||||
"<foo\\+$decimal>" \
|
"<foo(\\+$decimal)?>" \
|
||||||
"<foo\\+$decimal>"
|
"<foo(\\+$decimal)?>"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user