hello-amd64.sh 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 -x
  19. TMPDIR="test/test0100/tmp-amd64"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. ./bin/M2-Planet \
  23. --architecture amd64 \
  24. -f test/common_amd64/functions/exit.c \
  25. -f test/common_amd64/functions/file.c \
  26. -f functions/file_print.c \
  27. -f test/common_amd64/functions/malloc.c \
  28. -f functions/calloc.c \
  29. -f functions/match.c \
  30. -f test/test0100/blood-elf.c \
  31. --debug \
  32. --bootstrap-mode \
  33. -o ${TMPDIR}/blood-elf.M1 \
  34. || exit 1
  35. # Build debug footer
  36. blood-elf \
  37. --64 \
  38. -f ${TMPDIR}/blood-elf.M1 \
  39. --entry _start \
  40. -o ${TMPDIR}/blood-elf-footer.M1 \
  41. || exit 2
  42. # Macro assemble with libc written in M1-Macro
  43. M1 \
  44. -f test/common_amd64/amd64_defs.M1 \
  45. -f test/common_amd64/libc-core.M1 \
  46. -f ${TMPDIR}/blood-elf.M1 \
  47. -f ${TMPDIR}/blood-elf-footer.M1 \
  48. --LittleEndian \
  49. --architecture amd64 \
  50. -o ${TMPDIR}/blood-elf.hex2 \
  51. || exit 3
  52. # Resolve all linkages
  53. hex2 \
  54. -f test/common_amd64/ELF-amd64-debug.hex2 \
  55. -f ${TMPDIR}/blood-elf.hex2 \
  56. --LittleEndian \
  57. --architecture amd64 \
  58. --BaseAddress 0x00600000 \
  59. -o test/results/test0100-amd64-binary \
  60. --exec_enable \
  61. || exit 4
  62. # Ensure binary works if host machine supports test
  63. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "amd64" ]
  64. then
  65. # Verify that the compiled program returns the correct result
  66. out=$(./test/results/test0100-amd64-binary --version 2>&1 )
  67. [ 0 = $? ] || exit 5
  68. [ "$out" = "blood-elf 0.1
  69. (Basically Launches Odd Object Dump ExecutabLe Files" ] || exit 6
  70. . ./sha256.sh
  71. # Verify that the resulting file works
  72. ./test/results/test0100-amd64-binary -f test/test0100/test.M1 -o test/test0100/proof || exit 7
  73. out=$(sha256_check test/test0100/proof.answer)
  74. [ "$out" = "test/test0100/proof: OK" ] || exit 8
  75. fi
  76. exit 0