hello-knight-posix.sh 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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/test0014/tmp-knight-posix"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. bin/M2-Planet \
  23. --architecture knight-posix \
  24. -f M2libc/sys/types.h \
  25. -f M2libc/stddef.h \
  26. -f M2libc/sys/utsname.h \
  27. -f M2libc/knight/linux/unistd.c \
  28. -f M2libc/knight/linux/fcntl.c \
  29. -f M2libc/fcntl.c \
  30. -f M2libc/stdlib.c \
  31. -f M2libc/stdio.h \
  32. -f M2libc/stdio.c \
  33. -f test/test0014/basic_args.c \
  34. -o ${TMPDIR}/basic_args.M1 \
  35. || exit 1
  36. # Macro assemble with libc written in M1-Macro
  37. M1 \
  38. -f M2libc/knight/knight_defs.M1 \
  39. -f M2libc/knight/libc-full.M1 \
  40. -f ${TMPDIR}/basic_args.M1 \
  41. --big-endian \
  42. --architecture knight-posix \
  43. -o ${TMPDIR}/basic_args.hex2 \
  44. || exit 2
  45. # Resolve all linkages
  46. hex2 \
  47. -f M2libc/knight/ELF-knight.hex2 \
  48. -f ${TMPDIR}/basic_args.hex2 \
  49. --big-endian \
  50. --architecture knight-posix \
  51. --base-address 0x00 \
  52. -o test/results/test0014-knight-posix-binary \
  53. || exit 3
  54. # Ensure binary works if host machine supports test
  55. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight" ] && [ ! -z "${KNIGHT_EMULATION}" ]
  56. then
  57. . ./sha256.sh
  58. # Verify that the resulting file works
  59. execve_image \
  60. ./test/results/test0014-knight-posix-binary \
  61. 314 \
  62. 1 \
  63. 5926 \
  64. 5 \
  65. 35897 \
  66. 932384626 \
  67. 43 \
  68. 383279 \
  69. 50288 \
  70. 419 \
  71. 71693 \
  72. 99375105 \
  73. 820974944 \
  74. >| ${TMPDIR}/image || exit 4
  75. vm --POSIX-MODE --rom ${TMPDIR}/image --memory 2M >| test/test0014/proof || exit 5
  76. out=$(sha256_check test/test0014/proof-knight-posix.answer)
  77. [ "$out" = "test/test0014/proof: OK" ] || exit 6
  78. elif [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight" ]
  79. then
  80. . ./sha256.sh
  81. # Verify that the resulting file works
  82. ./test/results/test0014-knight-posix-binary 314 1 5926 5 35897 932384626 43 383279 50288 419 71693 99375105 820974944 >| test/test0014/proof || exit 5
  83. out=$(sha256_check test/test0014/proof-knight-posix.answer)
  84. [ "$out" = "test/test0014/proof: OK" ] || exit 6
  85. fi
  86. exit 0