hello-knight-posix.sh 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 -x
  19. TMPDIR="test/test0024/tmp-knight-posix"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. bin/M2-Planet \
  23. --architecture knight-posix \
  24. -f test/test0024/return.c \
  25. -o ${TMPDIR}/return.M1 \
  26. || exit 1
  27. # Macro assemble with libc written in M1-Macro
  28. M1 \
  29. -f M2libc/knight/knight_defs.M1 \
  30. -f M2libc/knight/libc-core.M1 \
  31. -f ${TMPDIR}/return.M1 \
  32. --big-endian \
  33. --architecture knight-posix \
  34. -o ${TMPDIR}/return.hex2 \
  35. || exit 2
  36. # Resolve all linkages
  37. hex2 \
  38. -f M2libc/knight/ELF-knight.hex2 \
  39. -f ${TMPDIR}/return.hex2 \
  40. --big-endian \
  41. --architecture knight-posix \
  42. --base-address 0x0 \
  43. -o test/results/test0024-knight-posix-binary \
  44. || exit 3
  45. # Ensure binary works if host machine supports test
  46. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight" ] && [ ! -z "${KNIGHT_EMULATION}" ]
  47. then
  48. # Verify that the resulting file works
  49. vm --POSIX-MODE --rom ./test/results/test0024-knight-posix-binary --memory 2M
  50. [ 42 = $? ] || exit 3
  51. elif [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight" ]
  52. then
  53. # Verify that the compiled program returns the correct result
  54. ./test/results/test0024-knight-posix-binary
  55. [ 42 = $? ] || exit 3
  56. fi
  57. exit 0