Add a test for weak alias

* ld-elf/data2.c: New file.
	* ld-elf/weakdef1.c: Likewise.

	* ld-elf/shared.exp: Add tests for libdata2 and weakdef1.
This commit is contained in:
H.J. Lu 2012-07-02 14:40:19 +00:00
parent 8d6eee87b6
commit a47edf2745
4 changed files with 37 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2012-07-02 H.J. Lu <hongjiu.lu@intel.com>
* ld-elf/data2.c: New file.
* ld-elf/weakdef1.c: Likewise.
* ld-elf/shared.exp: Add tests for libdata2 and weakdef1.
2012-06-28 Roland McGrath <mcgrathr@google.com>
* ld-arm/arm-elf.exp (armelftests_common): Add a test that gets

View File

@ -0,0 +1,9 @@
int foo = 0;
extern int foo_alias __attribute__ ((weak, alias ("foo")));
void
bar (void)
{
foo = -1;
}

View File

@ -127,6 +127,9 @@ set build_tests {
{"Build libdata1.so"
"-shared" "-fPIC"
{data1.c} {} "libdata1.so"}
{"Build libdata2.so"
"-shared" "-fPIC"
{data2.c} {} "libdata2.so"}
{"Build libcomm1.o"
"-r -nostdlib" ""
{comm1.c} {} "libcomm1.o"}
@ -281,6 +284,9 @@ set run_tests {
{"Run with libdata1.so"
"tmpdir/libdata1.so" ""
{dynbss1.c} "dynbss1" "pass.out"}
{"Run with libdata2.so"
"tmpdir/libdata2.so" ""
{weakdef1.c} "weakdef1" "pass.out"}
{"Run with libfunc1.so comm1.o"
"tmpdir/libfunc1.so tmpdir/comm1.o" ""
{dummy.c} "comm1" "pass.out"}

View File

@ -0,0 +1,15 @@
#include <stdio.h>
#include <stdlib.h>
extern int foo_alias;
extern void bar (void);
int
main (void)
{
bar ();
if (foo_alias != -1)
abort ();
printf ("PASS\n");
return 0;
}