run_test.sh 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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/test0022/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/test0022/continue.c \
  38. --debug \
  39. -o ${TMPDIR}/continue.M1 \
  40. || exit 1
  41. # Build debug footer
  42. blood-elf \
  43. ${BLOOD_ELF_WORD_SIZE_FLAG} \
  44. -f ${TMPDIR}/continue.M1 \
  45. ${ENDIANNESS_FLAG} \
  46. --entry _start \
  47. -o ${TMPDIR}/continue-footer.M1 \
  48. || exit 2
  49. # Macro assemble with libc written in M1-Macro
  50. M1 \
  51. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  52. -f M2libc/${ARCH}/libc-full.M1 \
  53. -f ${TMPDIR}/continue.M1 \
  54. -f ${TMPDIR}/continue-footer.M1 \
  55. ${ENDIANNESS_FLAG} \
  56. --architecture ${ARCH} \
  57. -o ${TMPDIR}/continue.hex2 \
  58. || exit 3
  59. # Resolve all linkages
  60. hex2 \
  61. -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
  62. -f ${TMPDIR}/continue.hex2 \
  63. ${ENDIANNESS_FLAG} \
  64. --architecture ${ARCH} \
  65. --base-address ${BASE_ADDRESS} \
  66. -o test/results/test0022-${ARCH}-binary \
  67. || exit 4
  68. # Ensure binary works if host machine supports test
  69. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
  70. then
  71. . ./sha256.sh
  72. # Verify that the resulting file works
  73. ./test/results/test0022-${ARCH}-binary >| test/test0022/proof
  74. [ 0 = $? ] || exit 5
  75. out=$(sha256_check test/test0022/proof.answer)
  76. [ "$out" = "test/test0022/proof: OK" ] || exit 6
  77. fi
  78. exit 0