hello-knight-posix.sh 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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/test0022/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/in_set.c \
  29. -f functions/numerate_number.c \
  30. -f functions/file_print.c \
  31. -f test/test0022/continue.c \
  32. -o ${TMPDIR}/continue.M1 \
  33. || exit 1
  34. # Macro assemble with libc written in M1-Macro
  35. M1 \
  36. -f M2libc/knight/knight_defs.M1 \
  37. -f M2libc/knight/libc-full.M1 \
  38. -f ${TMPDIR}/continue.M1 \
  39. --big-endian \
  40. --architecture knight-posix \
  41. -o ${TMPDIR}/continue.hex2 \
  42. || exit 3
  43. # Resolve all linkages
  44. hex2 \
  45. -f M2libc/knight/ELF-knight.hex2 \
  46. -f ${TMPDIR}/continue.hex2 \
  47. --big-endian \
  48. --architecture knight-posix \
  49. --base-address 0x0 \
  50. -o test/results/test0022-knight-posix-binary \
  51. || exit 4
  52. # Ensure binary works if host machine supports test
  53. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight*" ]
  54. then
  55. . ./sha256.sh
  56. # Verify that the resulting file works
  57. ./test/results/test0022-knight-posix-binary >| test/test0022/proof
  58. [ 0 = $? ] || exit 5
  59. out=$(sha256_check test/test0022/proof.answer)
  60. [ "$out" = "test/test0022/proof: OK" ] || exit 6
  61. fi
  62. exit 0