XCOFF binutils testsuite fix

Avoid an UNRESOLVED test due to "Error: the XCOFF file format does not
support arbitrary sections".

	* testsuite/lib/binutils-common.exp (is_xcoff_format): New.
	* testsuite/binutils-all/objcopy.exp (pr25662): Exclude xcoff.
This commit is contained in:
Alan Modra
2020-07-07 10:23:06 +09:30
parent fb3dc21336
commit efd0ed580e
3 changed files with 19 additions and 1 deletions

View File

@ -1354,4 +1354,7 @@ if { [istarget pdp11-*-*] } {
set src "pr25662.s"
}
objcopy_test "pr25662" $src executable "" "-T$srcdir/$subdir/pr25662.ld"
#xcoff doesn't support arbitrary sections
if { ![is_xcoff_format] } {
objcopy_test "pr25662" $src executable "" "-T$srcdir/$subdir/pr25662.ld"
}