run_test.sh 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 -x
  19. ARCH="$1"
  20. . test/env.inc.sh
  21. TMPDIR="test/test0024/tmp-${ARCH}"
  22. mkdir -p ${TMPDIR}
  23. # Build the test
  24. bin/M2-Planet \
  25. --architecture ${ARCH} \
  26. -f test/test0024/return.c \
  27. -o ${TMPDIR}/return.M1 \
  28. || exit 1
  29. # Macro assemble with libc written in M1-Macro
  30. M1 \
  31. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  32. -f M2libc/${ARCH}/libc-core.M1 \
  33. -f ${TMPDIR}/return.M1 \
  34. ${ENDIANNESS_FLAG} \
  35. --architecture ${ARCH} \
  36. -o ${TMPDIR}/return.hex2 \
  37. || exit 2
  38. # Resolve all linkages
  39. hex2 \
  40. -f M2libc/${ARCH}/ELF-${ARCH}.hex2 \
  41. -f ${TMPDIR}/return.hex2 \
  42. ${ENDIANNESS_FLAG} \
  43. --architecture ${ARCH} \
  44. --base-address ${BASE_ADDRESS} \
  45. -o test/results/test0024-${ARCH}-binary \
  46. || exit 3
  47. # Ensure binary works if host machine supports test
  48. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
  49. then
  50. # Verify that the compiled program returns the correct result
  51. ./test/results/test0024-${ARCH}-binary
  52. [ 42 = $? ] || exit 4
  53. fi
  54. exit 0