run_test.sh 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #! /bin/sh
  2. ## Copyright (C) 2017 Jeremiah Orians
  3. ## Copyright (C) 2020-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 -ex
  19. ARCH="$1"
  20. . test/env.inc.sh
  21. TMPDIR="test/test0027/tmp-${ARCH}"
  22. mkdir -p ${TMPDIR}
  23. # Build the test
  24. bin/M2-Planet \
  25. --architecture ${ARCH} \
  26. --debug \
  27. -f test/test0027/dereference.c \
  28. -o ${TMPDIR}/dereference.M1 \
  29. || exit 1
  30. # Build debug footer
  31. blood-elf \
  32. ${BLOOD_ELF_WORD_SIZE_FLAG} \
  33. -f ${TMPDIR}/dereference.M1 \
  34. ${ENDIANNESS_FLAG} \
  35. --entry _start \
  36. -o ${TMPDIR}/dereference-footer.M1 \
  37. || exit 2
  38. # Macro assemble with libc written in M1-Macro
  39. M1 \
  40. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  41. -f M2libc/${ARCH}/libc-core.M1 \
  42. -f ${TMPDIR}/dereference.M1 \
  43. -f ${TMPDIR}/dereference-footer.M1 \
  44. ${ENDIANNESS_FLAG} \
  45. --architecture ${ARCH} \
  46. -o ${TMPDIR}/dereference.hex2 \
  47. || exit 2
  48. # Resolve all linkages
  49. hex2 \
  50. -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
  51. -f ${TMPDIR}/dereference.hex2 \
  52. ${ENDIANNESS_FLAG} \
  53. --architecture ${ARCH} \
  54. --base-address ${BASE_ADDRESS} \
  55. -o test/results/test0027-${ARCH}-binary \
  56. || exit 3
  57. # Ensure binary works if host machine supports test
  58. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
  59. then
  60. . ./sha256.sh
  61. # Verify that the resulting file works
  62. ./test/results/test0027-${ARCH}-binary || exit 4
  63. fi
  64. exit 0