hello-armv7l.sh 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #! /bin/sh
  2. ## Copyright (C) 2017 Jeremiah Orians
  3. ## Copyright (C) 2021 deesix <deesix@tuta.io>
  4. ## This file is part of M2-Planet.
  5. ##
  6. ## M2-Planet 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. ##
  11. ## M2-Planet is distributed in the hope that it will be useful,
  12. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ## GNU General Public License for more details.
  15. ##
  16. ## You should have received a copy of the GNU General Public License
  17. ## along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
  18. set -x
  19. TMPDIR="test/test0023/tmp-armv7l"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. bin/M2-Planet \
  23. --architecture armv7l \
  24. -f test/common_armv7l/functions/file.c \
  25. -f test/test0023/fseek.c \
  26. --debug \
  27. --bootstrap-mode \
  28. -o ${TMPDIR}/fseek.M1 \
  29. || exit 1
  30. # Build debug footer
  31. blood-elf \
  32. -f ${TMPDIR}/fseek.M1 \
  33. --entry _start \
  34. -o ${TMPDIR}/fseek-footer.M1 \
  35. || exit 2
  36. # Macro assemble with libc written in M1-Macro
  37. M1 \
  38. -f test/common_armv7l/armv7l_defs.M1 \
  39. -f test/common_armv7l/libc-core.M1 \
  40. -f ${TMPDIR}/fseek.M1 \
  41. -f ${TMPDIR}/fseek-footer.M1 \
  42. --LittleEndian \
  43. --architecture armv7l \
  44. -o ${TMPDIR}/fseek.hex2 \
  45. || exit 3
  46. # Resolve all linkages
  47. hex2 \
  48. -f test/common_armv7l/ELF-armv7l-debug.hex2 \
  49. -f ${TMPDIR}/fseek.hex2 \
  50. --LittleEndian \
  51. --architecture armv7l \
  52. --BaseAddress 0x10000 \
  53. -o test/results/test0023-armv7l-binary \
  54. --exec_enable \
  55. || exit 4
  56. # Ensure binary works if host machine supports test
  57. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "armv7l" ]
  58. then
  59. . ./sha256.sh
  60. # Verify that the resulting file works
  61. ./test/results/test0023-armv7l-binary test/test0023/question >| test/test0023/proof
  62. [ 0 = $? ] || exit 5
  63. out=$(sha256_check test/test0023/proof.answer)
  64. [ "$out" = "test/test0023/proof: OK" ] || exit 6
  65. fi
  66. exit 0