hello-knight-posix.sh 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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/test0102/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 M2libc/bootstrappable.c \
  34. -f test/test0102/M1-macro.c \
  35. -o ${TMPDIR}/M1-macro.M1 \
  36. || exit 1
  37. # Macro assemble with libc written in M1-Macro
  38. M1 \
  39. -f M2libc/knight/knight_defs.M1 \
  40. -f M2libc/knight/libc-full.M1 \
  41. -f ${TMPDIR}/M1-macro.M1 \
  42. --big-endian \
  43. --architecture knight-posix \
  44. -o ${TMPDIR}/M1-macro.hex2 \
  45. || exit 3
  46. # Resolve all linkages
  47. hex2 \
  48. -f M2libc/knight/ELF-knight.hex2 \
  49. -f ${TMPDIR}/M1-macro.hex2 \
  50. --big-endian \
  51. --architecture knight-posix \
  52. --base-address 0x00 \
  53. -o test/results/test0102-knight-posix-binary \
  54. || exit 4
  55. # Ensure binary works if host machine supports test
  56. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight" ] && [ ! -z "${KNIGHT_EMULATION}" ]
  57. then
  58. # Verify that the compiled program returns the correct result
  59. execve_image \
  60. ./test/results/test0102-knight-posix-binary \
  61. --version \
  62. >| ${TMPDIR}/image || exit 5
  63. out=$(vm --POSIX-MODE --rom ${TMPDIR}/image --memory 2M)
  64. [ 0 = $? ] || exit 6
  65. [ "$out" = "M1 1.0.0" ] || exit 7
  66. # Verify that the resulting file works
  67. execve_image \
  68. ./test/results/test0102-knight-posix-binary \
  69. -f M2libc/x86/x86_defs.M1 \
  70. -f M2libc/x86/libc-core.M1 \
  71. -f test/test0100/test.M1 \
  72. --little-endian \
  73. --architecture x86 \
  74. -o test/test0102/proof \
  75. >| ${TMPDIR}/image || exit 8
  76. vm --POSIX-MODE --rom ${TMPDIR}/image --memory 2M || exit 9
  77. . ./sha256.sh
  78. out=$(sha256_check test/test0102/proof.answer)
  79. [ "$out" = "test/test0102/proof: OK" ] || exit 8
  80. elif [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight" ]
  81. then
  82. # Verify that the compiled program returns the correct result
  83. out=$(./test/results/test0102-knight-posix-binary --version 2>&1 )
  84. [ 0 = $? ] || exit 6
  85. [ "$out" = "M1 1.0.0" ] || exit 7
  86. # Verify that the resulting file works
  87. ./test/results/test0102-knight-posix-binary \
  88. -f M2libc/x86/x86_defs.M1 \
  89. -f M2libc/x86/libc-core.M1 \
  90. -f test/test0100/test.M1 \
  91. --little-endian \
  92. --architecture x86 \
  93. -o test/test0102/proof \
  94. || exit 9
  95. . ./sha256.sh
  96. out=$(sha256_check test/test0102/proof.answer)
  97. [ "$out" = "test/test0102/proof: OK" ] || exit 8
  98. fi
  99. exit 0