+2018-02-19 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/22845
+ * testsuite/ld-elf/frame.exp: Skip if -shared isn't supported.
+ Add tests for "-z noseparate-code" and "-z separate-code".
+ Remove unsupported -shared check.
+
2018-02-17 H.J. Lu <hongjiu.lu@intel.com>
PR ld/22845
}
# No shared lib support on this target.
-if { [istarget "mcore-*-*"] } {
+if ![istarget shared] {
return
}
return
}
-if { [ld_link $ld tmpdir/frame.so "--shared tmpdir/frame.o tmpdir/tbss.o"] } {
- pass "$test1"
+if { [ld_link $ld tmpdir/frame.so "-z noseparate-code --shared tmpdir/frame.o tmpdir/tbss.o"] } {
+ pass "$test1 -z noseparate-code"
} else {
- if [string match "*shared not supported*" $link_output] {
- unsupported "-shared is not supported by this target"
- } else {
- fail "$test1"
- }
+ fail "$test1 -z noseparate-code"
+}
+
+if { [ld_link $ld tmpdir/frame.so "-z separate-code --shared tmpdir/frame.o tmpdir/tbss.o"] } {
+ pass "$test1 -z separate-code"
+} else {
+ fail "$test1 -z separate-code"
}
if ![ld_assemble_flags $as $as_opt $srcdir/$subdir/table.s tmpdir/table.o ] {
return
}
-if { [ld_link $ld tmpdir/table.so "--shared tmpdir/table.o tmpdir/tbss.o"] } {
- pass "$test2"
+if { [ld_link $ld tmpdir/table.so "-z noseparate-code --shared tmpdir/table.o tmpdir/tbss.o"] } {
+ pass "$test2 -z noseparate-code"
+} else {
+ fail "$test2 -z noseparate-code"
+}
+
+if { [ld_link $ld tmpdir/table.so "-z separate-code --shared tmpdir/table.o tmpdir/tbss.o"] } {
+ pass "$test2 -z separate-code"
} else {
- if [string match "*shared not supported*" $link_output] {
- unsupported "-shared is not supported by this target"
- } else {
- fail "$test2"
- }
+ fail "$test2 -z separate-code"
}