run_test.sh 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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/test0102/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 functions/file_print.c \
  31. -f functions/match.c \
  32. -f functions/in_set.c \
  33. -f functions/numerate_number.c \
  34. -f functions/string.c \
  35. -f functions/require.c \
  36. -f test/test0102/M1-macro.c \
  37. --debug \
  38. -o ${TMPDIR}/M1-macro.M1 \
  39. || exit 1
  40. # Build debug footer
  41. blood-elf \
  42. ${BLOOD_ELF_WORD_SIZE_FLAG} \
  43. -f ${TMPDIR}/M1-macro.M1 \
  44. --entry _start \
  45. -o ${TMPDIR}/M1-macro-footer.M1 \
  46. || exit 2
  47. # Macro assemble with libc written in M1-Macro
  48. M1 \
  49. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  50. -f M2libc/${ARCH}/libc-full.M1 \
  51. -f ${TMPDIR}/M1-macro.M1 \
  52. -f ${TMPDIR}/M1-macro-footer.M1 \
  53. ${ENDIANNESS_FLAG} \
  54. --architecture ${ARCH} \
  55. -o ${TMPDIR}/M1-macro.hex2 \
  56. || exit 3
  57. # Resolve all linkages
  58. hex2 \
  59. -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
  60. -f ${TMPDIR}/M1-macro.hex2 \
  61. ${ENDIANNESS_FLAG} \
  62. --architecture ${ARCH} \
  63. --base-address ${BASE_ADDRESS} \
  64. -o test/results/test0102-${ARCH}-binary \
  65. || exit 4
  66. # Ensure binary works if host machine supports test
  67. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
  68. then
  69. # Verify that the compiled program returns the correct result
  70. out=$(./test/results/test0102-${ARCH}-binary --version 2>&1 )
  71. [ 0 = $? ] || exit 5
  72. [ "$out" = "M1 1.0.0" ] || exit 6
  73. # Verify that the resulting file works
  74. ./test/results/test0102-${ARCH}-binary \
  75. -f M2libc/x86/x86_defs.M1 \
  76. -f M2libc/x86/libc-core.M1 \
  77. -f test/test0100/test.M1 \
  78. ${ENDIANNESS_FLAG} \
  79. --architecture x86 \
  80. -o test/test0102/proof \
  81. || exit 7
  82. . ./sha256.sh
  83. out=$(sha256_check test/test0102/proof.answer)
  84. [ "$out" = "test/test0102/proof: OK" ] || exit 8
  85. fi
  86. exit 0