retain_symbols_file_test.sh 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/bin/sh
  2. # retain_symbols_file_test.sh -- a test case for -retain-symbols-file
  3. # Copyright (C) 2009-2015 Free Software Foundation, Inc.
  4. # Written by Craig Silverstein <csilvers@google.com>.
  5. # This file is part of gold.
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 3 of the License, or
  9. # (at your option) any later version.
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. # The Makefile tries linking simple_test.o with -retain-symbols-file.
  19. # It then runs nm over the results. We check that the output is right.
  20. check_present()
  21. {
  22. if ! grep -q "$1" retain_symbols_file_test.stdout
  23. then
  24. echo "Did not find expected symbol $1 in retain_symbols_file_test.stdout"
  25. exit 1
  26. fi
  27. }
  28. check_absent()
  29. {
  30. if grep -q "$1" retain_symbols_file_test.stdout
  31. then
  32. echo "Found unexpected symbol $1 in retain_symbols_file_test.stdout"
  33. exit 1
  34. fi
  35. }
  36. check_present 't1'
  37. check_present 't16b::t16b()'
  38. check_present 't20a::get()'
  39. check_present 't18()'
  40. check_absent 't10'
  41. check_absent 't1()'
  42. check_absent 't16b::t()'
  43. exit 0