run_test.sh 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 -ex
  19. ARCH="$1"
  20. . test/env.inc.sh
  21. TMPDIR="test/test0023/tmp-${ARCH}"
  22. mkdir -p ${TMPDIR}
  23. # Build the test
  24. bin/M2-Planet \
  25. --architecture ${ARCH} \
  26. -f M2libc/${ARCH}/Linux/unistd.h \
  27. -f M2libc/stdlib.c \
  28. -f M2libc/${ARCH}/Linux/fcntl.h \
  29. -f M2libc/stdio.c \
  30. -f test/test0023/fseek.c \
  31. --debug \
  32. -o ${TMPDIR}/fseek.M1 \
  33. || exit 1
  34. # Build debug footer
  35. blood-elf \
  36. ${BLOOD_ELF_WORD_SIZE_FLAG} \
  37. -f ${TMPDIR}/fseek.M1 \
  38. --entry _start \
  39. -o ${TMPDIR}/fseek-footer.M1 \
  40. || exit 2
  41. # Macro assemble with libc written in M1-Macro
  42. M1 \
  43. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  44. -f M2libc/${ARCH}/libc-full.M1 \
  45. -f ${TMPDIR}/fseek.M1 \
  46. -f ${TMPDIR}/fseek-footer.M1 \
  47. ${ENDIANNESS_FLAG} \
  48. --architecture ${ARCH} \
  49. -o ${TMPDIR}/fseek.hex2 \
  50. || exit 3
  51. # Resolve all linkages
  52. hex2 \
  53. -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
  54. -f ${TMPDIR}/fseek.hex2 \
  55. ${ENDIANNESS_FLAG} \
  56. --architecture ${ARCH} \
  57. --base-address ${BASE_ADDRESS} \
  58. -o test/results/test0023-${ARCH}-binary \
  59. || exit 4
  60. # Ensure binary works if host machine supports test
  61. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
  62. then
  63. . ./sha256.sh
  64. # Verify that the resulting file works
  65. ./test/results/test0023-${ARCH}-binary test/test0023/question >| test/test0023/proof
  66. [ 0 = $? ] || exit 5
  67. out=$(sha256_check test/test0023/proof.answer)
  68. [ "$out" = "test/test0023/proof: OK" ] || exit 6
  69. fi
  70. exit 0