diff options
author | Cary Coutant <ccoutant@google.com> | 2009-10-28 00:32:12 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2009-10-28 00:32:12 +0000 |
commit | 2499805399b431a88cae733b292b04916e1295d6 (patch) | |
tree | 13e378dc902b8eff2a56b2d4335522f9c9940f41 /gold/testsuite/Makefile.am | |
parent | 853f94f653160c2c3301b2acdb1c72b43e76e3a0 (diff) | |
download | gdb-2499805399b431a88cae733b292b04916e1295d6.zip gdb-2499805399b431a88cae733b292b04916e1295d6.tar.gz gdb-2499805399b431a88cae733b292b04916e1295d6.tar.bz2 |
* symtab.cc (add_from_pluginobj): Pass correct value for is_ordinary.
* testsuite/Makefile.am (plugin_test_5): New test case.
* testsuite/Makefile.in: Regenerate.
Diffstat (limited to 'gold/testsuite/Makefile.am')
-rw-r--r-- | gold/testsuite/Makefile.am | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/gold/testsuite/Makefile.am b/gold/testsuite/Makefile.am index b343ca3..0351828 100644 --- a/gold/testsuite/Makefile.am +++ b/gold/testsuite/Makefile.am @@ -1128,6 +1128,10 @@ plugin_test_4.err: plugin_test_4 plugin_test_4.a: two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms $(TEST_AR) cr $@ $^ +check_PROGRAMS += plugin_test_5 +plugin_test_5: two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms unused.syms gcctestdir/ld plugin_test.so + $(CXXLINK) -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv",--gc-sections two_file_test_main.o two_file_test_1.syms two_file_test_1b.syms two_file_test_2.syms unused.syms + plugin_test.so: plugin_test.o $(LINK) -Bgcctestdir/ -shared plugin_test.o plugin_test.o: plugin_test.c @@ -1141,9 +1145,19 @@ two_file_test_1b.syms: two_file_test_1b.o $(TEST_READELF) -sW $< >$@ 2>/dev/null two_file_test_2.syms: two_file_test_2.o $(TEST_READELF) -sW $< >$@ 2>/dev/null + empty.syms: - @echo "" >empty.syms - @echo "Symbol table" >>empty.syms + @echo "" >$@ + @echo "Symbol table" >>$@ + +MOSTLYCLEANFILES += unused.c +unused.syms: unused.o + $(TEST_READELF) -sW $< >$@ 2>/dev/null + @echo " 1: 00000000 4 FUNC GLOBAL DEFAULT 1 UNUSED" >>$@ +unused.o: unused.c + $(COMPILE) -c -o $@ $< +unused.c: + @cp /dev/null $@ endif PLUGINS |