run_test.sh 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. -f M2libc/sys/types.h \
  27. -f M2libc/stddef.h \
  28. -f M2libc/signal.h \
  29. -f M2libc/sys/utsname.h \
  30. -f M2libc/${ARCH}/linux/unistd.c \
  31. -f M2libc/${ARCH}/linux/fcntl.c \
  32. -f M2libc/fcntl.c \
  33. -f M2libc/stdlib.c \
  34. -f M2libc/stdio.h \
  35. -f M2libc/stdio.c \
  36. -f M2libc/bootstrappable.c \
  37. -f test/test0105/lisp.h \
  38. -f test/test0105/lisp.c \
  39. -f test/test0105/lisp_cell.c \
  40. -f test/test0105/lisp_eval.c \
  41. -f test/test0105/lisp_print.c \
  42. -f test/test0105/lisp_read.c \
  43. --debug \
  44. -o ${TMPDIR}/lisp.M1 \
  45. || exit 1
  46. # Build debug footer
  47. blood-elf \
  48. ${BLOOD_ELF_WORD_SIZE_FLAG} \
  49. -f ${TMPDIR}/lisp.M1 \
  50. ${ENDIANNESS_FLAG} \
  51. --entry _start \
  52. -o ${TMPDIR}/lisp-footer.M1 \
  53. || exit 2
  54. # Macro assemble with libc written in M1-Macro
  55. M1 \
  56. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  57. -f M2libc/${ARCH}/libc-full.M1 \
  58. -f ${TMPDIR}/lisp.M1 \
  59. -f ${TMPDIR}/lisp-footer.M1 \
  60. ${ENDIANNESS_FLAG} \
  61. --architecture ${ARCH} \
  62. -o ${TMPDIR}/lisp.hex2 \
  63. || exit 3
  64. # Resolve all linkages
  65. hex2 \
  66. -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
  67. -f ${TMPDIR}/lisp.hex2 \
  68. ${ENDIANNESS_FLAG} \
  69. --architecture ${ARCH} \
  70. --base-address ${BASE_ADDRESS} \
  71. -o test/results/test0105-${ARCH}-binary \
  72. || exit 4
  73. # Ensure binary works if host machine supports test
  74. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
  75. then
  76. # Verify that the compiled program returns the correct result
  77. out=$(./test/results/test0105-${ARCH}-binary --version 2>&1 )
  78. [ 0 = $? ] || exit 5
  79. [ "$out" = "Slow_Lisp 0.1" ] || exit 6
  80. # Verify that the resulting file works
  81. out=$(./test/results/test0105-${ARCH}-binary --file test/test0105/test.scm)
  82. [ "$out" = "42" ] || exit 7
  83. fi
  84. exit 0