hello-knight-posix.sh 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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/test1000/tmp-knight-posix"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. ./bin/M2-Planet \
  23. --architecture knight-posix \
  24. -f M2libc/knight/linux/bootstrap.c \
  25. -f cc.h \
  26. -f M2libc/bootstrappable.c \
  27. -f cc_globals.c \
  28. -f cc_reader.c \
  29. -f cc_strings.c \
  30. -f cc_types.c \
  31. -f cc_emit.c \
  32. -f cc_core.c \
  33. -f cc_macro.c \
  34. -f cc.c \
  35. --debug \
  36. --bootstrap-mode \
  37. -o ${TMPDIR}/cc.M1 \
  38. || exit 1
  39. # Macro assemble with libc written in M1-Macro
  40. M1 \
  41. -f M2libc/knight/knight_defs.M1 \
  42. -f M2libc/knight/libc-core.M1 \
  43. -f ${TMPDIR}/cc.M1 \
  44. --big-endian \
  45. --architecture knight-posix \
  46. -o ${TMPDIR}/cc.hex2 \
  47. || exit 2
  48. # Resolve all linkages
  49. hex2 \
  50. -f M2libc/knight/ELF-knight.hex2 \
  51. -f ${TMPDIR}/cc.hex2 \
  52. --big-endian \
  53. --architecture knight-posix \
  54. --base-address 0x00 \
  55. -o test/results/test1000-knight-posix-binary \
  56. || exit 3
  57. # Ensure binary works if host machine supports test
  58. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight" ] && [ ! -z "${KNIGHT_EMULATION}" ]
  59. then
  60. # Verify that the resulting file works
  61. execve_image \
  62. ./test/results/test1000-knight-posix-binary \
  63. --architecture x86 \
  64. -f M2libc/ctype.c \
  65. -f M2libc/stdarg.h \
  66. -f M2libc/sys/types.h \
  67. -f M2libc/stddef.h \
  68. -f M2libc/sys/utsname.h \
  69. -f M2libc/x86/linux/unistd.c \
  70. -f M2libc/x86/linux/fcntl.c \
  71. -f M2libc/fcntl.c \
  72. -f M2libc/stdlib.c \
  73. -f M2libc/stdio.h \
  74. -f M2libc/stdio.c \
  75. -f cc.h \
  76. -f M2libc/bootstrappable.c \
  77. -f cc_globals.c \
  78. -f cc_reader.c \
  79. -f cc_strings.c \
  80. -f cc_types.c \
  81. -f cc_emit.c \
  82. -f cc_core.c \
  83. -f cc_macro.c \
  84. -f cc.c \
  85. -o test/test1000/proof \
  86. >| ${TMPDIR}/image \
  87. || exit 4
  88. vm \
  89. --POSIX-MODE \
  90. --rom ${TMPDIR}/image \
  91. --memory 10M \
  92. || exit 5
  93. . ./sha256.sh
  94. out=$(sha256_check test/test1000/proof.answer)
  95. [ "$out" = "test/test1000/proof: OK" ] || exit 6
  96. elif [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight" ]
  97. then
  98. # Verify that the resulting file works
  99. ./test/results/test1000-knight-posix-binary \
  100. --architecture x86 \
  101. -f M2libc/stdarg.h \
  102. -f M2libc/sys/types.h \
  103. -f M2libc/stddef.h \
  104. -f M2libc/x86/Linux/unistd.h \
  105. -f M2libc/stdlib.c \
  106. -f M2libc/x86/Linux/fcntl.h \
  107. -f M2libc/stdio.h \
  108. -f M2libc/stdio.c \
  109. -f cc.h \
  110. -f M2libc/bootstrappable.c \
  111. -f cc_globals.c \
  112. -f cc_reader.c \
  113. -f cc_strings.c \
  114. -f cc_types.c \
  115. -f cc_core.c \
  116. -f cc_macro.c \
  117. -f cc.c \
  118. -o test/test1000/proof \
  119. || exit 7
  120. . ./sha256.sh
  121. out=$(sha256_check test/test1000/proof.answer)
  122. [ "$out" = "test/test1000/proof: OK" ] || exit 8
  123. fi
  124. exit 0