run_test.sh 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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/test0105/tmp-${ARCH}"
  22. mkdir -p ${TMPDIR}
  23. # Build the test
  24. ./bin/M2-Planet \
  25. --architecture ${ARCH} \
  26. --expand-includes \
  27. -f test/test0105/lisp.c \
  28. -f test/test0105/lisp_cell.c \
  29. -f test/test0105/lisp_eval.c \
  30. -f test/test0105/lisp_print.c \
  31. -f test/test0105/lisp_read.c \
  32. --debug \
  33. -o ${TMPDIR}/lisp.M1 \
  34. || exit 1
  35. # Build debug footer
  36. blood-elf \
  37. ${BLOOD_ELF_WORD_SIZE_FLAG} \
  38. -f ${TMPDIR}/lisp.M1 \
  39. ${ENDIANNESS_FLAG} \
  40. --entry _start \
  41. -o ${TMPDIR}/lisp-footer.M1 \
  42. || exit 2
  43. # Macro assemble with libc written in M1-Macro
  44. M1 \
  45. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  46. -f M2libc/${ARCH}/libc-full.M1 \
  47. -f ${TMPDIR}/lisp.M1 \
  48. -f ${TMPDIR}/lisp-footer.M1 \
  49. ${ENDIANNESS_FLAG} \
  50. --architecture ${ARCH} \
  51. -o ${TMPDIR}/lisp.hex2 \
  52. || exit 3
  53. # Resolve all linkages
  54. hex2 \
  55. -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
  56. -f ${TMPDIR}/lisp.hex2 \
  57. ${ENDIANNESS_FLAG} \
  58. --architecture ${ARCH} \
  59. --base-address ${BASE_ADDRESS} \
  60. -o test/results/test0105-${ARCH}-binary \
  61. || exit 4
  62. # Ensure binary works if host machine supports test
  63. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ] || [ -n "${GET_MACHINE_OVERRIDE_ALWAYS_RUN+x}" ]
  64. then
  65. # Verify that the compiled program returns the correct result
  66. out=$(./test/results/test0105-${ARCH}-binary --version 2>&1 )
  67. [ 0 = $? ] || exit 5
  68. [ "$out" = "Slow_Lisp 0.1" ] || exit 6
  69. # Verify that the resulting file works
  70. out=$(./test/results/test0105-${ARCH}-binary --file test/test0105/test.scm)
  71. [ "$out" = "42" ] || exit 7
  72. fi
  73. exit 0