ld relro
[platform/upstream/binutils.git] / ld / testsuite / ld-bootstrap / bootstrap.exp
index ecc760a..ccb07d5 100644 (file)
@@ -1,6 +1,5 @@
 # Expect script for LD Bootstrap Tests
-#   Copyright 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2004,
-#   2005, 2006, 2007, 2009  Free Software Foundation, Inc.
+#   Copyright (C) 1993-2014 Free Software Foundation, Inc.
 #
 # This file is part of the GNU Binutils.
 #
@@ -40,13 +39,22 @@ if [info exists plugins] then {
     set plugins "no"
 }
 
+# LD can have plugin support even if BFD does not.
+if [check_plugin_api_available] {
+    set plugins "yes"
+}
+
 # Bootstrap ld.  First link the object files together using -r, in
 # order to test -r.  Then link the result into an executable, ld1, to
 # really test -r.  Use ld1 to link a fresh ld, ld2.  Use ld2 to link a
 # new ld, ld3.  ld2 and ld3 should be identical.
+set test_flags {"" "strip" "--static" "--traditional-format"
+               "--no-keep-memory" "--relax"}
+if { [istarget "powerpc-*-*"] } {
+    lappend test_flags "--ppc476-workaround"
+}
 
-foreach flags {"" "strip" "--static" "--traditional-format"
-              "--no-keep-memory" "--relax"} {
+foreach flags $test_flags {
     set do_strip "no"
     if {"$flags" == "strip"} { 
        set testname "bootstrap with $flags"
@@ -64,22 +72,31 @@ foreach flags {"" "strip" "--static" "--traditional-format"
        set partial_flags ""
     }
 
+    if { $partial_flags == "--ppc476-workaround" } {
+       append partial_flags " -T $srcdir/$subdir/ppc476.t"
+    }
+
     # This test can only be run if we have the ld build directory,
     # since we need the object files.
-    if {$ld != "$objdir/ld-new"} {
+    set ldexe $ld
+    set ldparm [string first " " $ld]
+    if { $ldparm > 0 } then {
+       set ldexe [string range $ld 0 $ldparm]
+    }
+    if {$ldexe != "$objdir/ld-new"} {
        untested $testname
        continue
     }
 
     # Plugin support requires linking with a dynamic library which
-    # means that these
+    # means that these tests will fail.
     if { $flags == "--static" && $plugins == "yes" } then {
        untested $testname
        continue
     }
 
     # If we only have a shared libbfd, we probably can't run the
-    # --static test.will fail.
+    # --static test.
     if { $flags == "--static" && ! [string match "*libbfd.a*" $BFDLIB] } then {
        untested $testname
        continue
@@ -110,7 +127,9 @@ foreach flags {"" "strip" "--static" "--traditional-format"
 
     # Plugin support requires linking with libdl.
     if { $plugins == "yes" } {
-       set extralibs "$extralibs -ldl"
+       if { ![istarget "*-*-freebsd*"]} {
+           set extralibs "$extralibs -ldl"
+       }
     }
 
     # On Irix 5, linking with --static only works if all the files are
@@ -150,7 +169,7 @@ foreach flags {"" "strip" "--static" "--traditional-format"
            # On ia64, tmpdir/ld2 != tmpdir/ld3 is normal since they are
            # generated by different linkers, tmpdir/ld1 and tmpdir/ld2.
            # So we rebuild tmpdir/ld2 with tmpdir/ld3.
-           if ![ld_link tmpdir/ld3 tmpdir/ld2 "$flags $OFILES $BFDLIB $LIBIBERTY"] {
+           if ![ld_link tmpdir/ld3 tmpdir/ld2 "$flags $OFILES $BFDLIB $LIBIBERTY $extralibs"] {
                fail $testname
                continue
            }
@@ -160,7 +179,7 @@ foreach flags {"" "strip" "--static" "--traditional-format"
            # On Linux/mips, tmpdir/ld2 != tmpdir/ld3 is normal since
            # they are generated by different linkers, tmpdir/ld1 and
            # tmpdir/ld2. So we rebuild tmpdir/ld2 with tmpdir/ld3.
-           if ![ld_link tmpdir/ld3 tmpdir/ld2 "$flags $OFILES $BFDLIB $LIBIBERTY"] {
+           if ![ld_link tmpdir/ld3 tmpdir/ld2 "$flags $OFILES $BFDLIB $LIBIBERTY $extralibs"] {
                fail $testname
                continue
            }