* ld-elfvsb/elfvsb.exp: Add the "ld -r" test.
* ld-elfvsb/hidden0.d: New.
* ld-elfvsb/hidden1.d: New.
* ld-elfvsb/internal0.d: New.
* ld-elfvsb/internal1.d: New.
* ld-elfvsb/protected0.d: New.
* ld-elfvsb/protected1.d: New.
* ld-elfvsb/undef.s: New.
* ld-elfvsb/undef.s: New.
+2001-11-02 H.J. Lu <hjl@gnu.org>
+
+ * ld-elfvsb/elfvsb.exp: Add the "ld -r" test.
+
+ * ld-elfvsb/hidden0.d: New.
+ * ld-elfvsb/hidden1.d: New.
+ * ld-elfvsb/internal0.d: New.
+ * ld-elfvsb/internal1.d: New.
+ * ld-elfvsb/protected0.d: New.
+ * ld-elfvsb/protected1.d: New.
+ * ld-elfvsb/undef.s: New.
+ * ld-elfvsb/undef.s: New.
+
2001-11-02 NIIBE Yutaka <gniibe@m17n.org>
* ld-sh/sh.exp: Have its own start.s for linux.
--- /dev/null
+ .globl protected
+protected:
+ .globl hidden
+hidden:
+ .globl internal
+internal:
return
}
+set test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
+foreach t $test_list {
+ # We need to strip the ".d", but can leave the dirname.
+ verbose [file rootname $t]
+ run_dump_test [file rootname $t]
+}
+
set tmpdir tmpdir
set SHCFLAG ""
--- /dev/null
+#source: define.s
+#source: undef.s
+#ld: -r
+#readelf: -s
+
+Symbol table '.symtab' contains .* entries:
+ Num: Value[ ]+Size Type Bind Vis Ndx Name
+#...
+ .: [0-9a-fA-F]* 0 NOTYPE GLOBAL HIDDEN . hidden
+#pass
--- /dev/null
+#source: undef.s
+#ld: -r
+#readelf: -s
+
+Symbol table '.symtab' contains .* entries:
+ Num: Value[ ]+Size Type Bind Vis Ndx Name
+#...
+ .: [0-9a-fA-F]* 0 NOTYPE GLOBAL HIDDEN UND hidden
+#pass
--- /dev/null
+#source: define.s
+#source: undef.s
+#ld: -r
+#readelf: -s
+
+Symbol table '.symtab' contains .* entries:
+ Num: Value[ ]+Size Type Bind Vis Ndx Name
+#...
+ .: [0-9a-fA-F]* 0 NOTYPE GLOBAL INTERNAL . internal
+#pass
--- /dev/null
+#source: undef.s
+#ld: -r
+#readelf: -s
+
+Symbol table '.symtab' contains .* entries:
+ Num: Value[ ]+Size Type Bind Vis Ndx Name
+#...
+ .: [0-9a-fA-F]* 0 NOTYPE GLOBAL INTERNAL UND internal
+#pass
--- /dev/null
+#source: define.s
+#source: undef.s
+#ld: -r
+#readelf: -s
+
+Symbol table '.symtab' contains .* entries:
+ Num: Value[ ]+Size Type Bind Vis Ndx Name
+#...
+ .: [0-9a-fA-F]* 0 NOTYPE GLOBAL PROTECTED . protected
+#pass
--- /dev/null
+#source: undef.s
+#ld: -r
+#readelf: -s
+
+Symbol table '.symtab' contains .* entries:
+ Num: Value[ ]+Size Type Bind Vis Ndx Name
+#...
+ .: [0-9a-fA-F]* 0 NOTYPE GLOBAL PROTECTED UND protected
+#pass
--- /dev/null
+ .protected protected
+ .hidden hidden
+ .internal internal