arm_attr_merge.sh 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #!/bin/sh
  2. # arm_attr_merge.sh -- test ARM attributes merging.
  3. # Copyright (C) 2010-2022 Free Software Foundation, Inc.
  4. # Written by Doug Kwan <dougkwan@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. # This file goes with the assembler source files arm_attr_merge*.s
  19. check()
  20. {
  21. file=$1
  22. pattern=$2
  23. found=`grep "$pattern" $file`
  24. if test -z "$found"; then
  25. echo "pattern \"$pattern\" not found in file $file."
  26. exit 1
  27. fi
  28. }
  29. # This is a bit crude.
  30. check arm_attr_merge_6.stdout "Tag_MPextension_use: Allowed"
  31. check arm_attr_merge_6r.stdout "Tag_MPextension_use: Allowed"
  32. check arm_attr_merge_7.stdout "Tag_MPextension_use: Allowed"
  33. exit 0