hello-knight-posix.sh 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. TMPDIR="test/test0100/tmp-knight-posix"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. ./bin/M2-Planet \
  23. --architecture knight-posix \
  24. -f M2libc/knight/Linux/unistd.h \
  25. -f M2libc/stdlib.c \
  26. -f M2libc/knight/Linux/fcntl.h \
  27. -f M2libc/stdio.c \
  28. -f functions/file_print.c \
  29. -f functions/match.c \
  30. -f test/test0100/blood-elf.c \
  31. -o ${TMPDIR}/blood-elf.M1 \
  32. || exit 1
  33. # Macro assemble with libc written in M1-Macro
  34. M1 \
  35. -f M2libc/knight/knight_defs.M1 \
  36. -f M2libc/knight/libc-full.M1 \
  37. -f ${TMPDIR}/blood-elf.M1 \
  38. --big-endian \
  39. --architecture knight-posix \
  40. -o ${TMPDIR}/blood-elf.hex2 \
  41. || exit 3
  42. # Resolve all linkages
  43. hex2 \
  44. -f M2libc/knight/ELF-knight.hex2 \
  45. -f ${TMPDIR}/blood-elf.hex2 \
  46. --big-endian \
  47. --architecture knight-posix \
  48. --base-address 0x00 \
  49. -o test/results/test0100-knight-posix-binary \
  50. || exit 4
  51. # Ensure binary works if host machine supports test
  52. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight*" ]
  53. then
  54. # Verify that the compiled program returns the correct result
  55. out=$(./test/results/test0100-knight-posix-binary --version 2>&1 )
  56. [ 0 = $? ] || exit 5
  57. [ "$out" = "blood-elf 0.1
  58. (Basically Launches Odd Object Dump ExecutabLe Files" ] || exit 6
  59. . ./sha256.sh
  60. # Verify that the resulting file works
  61. ./test/results/test0100-knight-posix-binary -f test/test0100/test.M1 -o test/test0100/proof || exit 7
  62. out=$(sha256_check test/test0100/proof.answer)
  63. [ "$out" = "test/test0100/proof: OK" ] || exit 8
  64. fi
  65. exit 0