hello-knight-native.sh 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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/test0005/tmp-knight-native"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. bin/M2-Planet \
  23. --architecture knight-native \
  24. -f M2libc/ctype.c \
  25. -f M2libc/stdarg.h \
  26. -f M2libc/sys/types.h \
  27. -f M2libc/stddef.h \
  28. -f M2libc/sys/utsname.h \
  29. -f M2libc/knight/native/unistd.c \
  30. -f M2libc/knight/native/fcntl.c \
  31. -f M2libc/fcntl.c \
  32. -f M2libc/stdlib.c \
  33. -f M2libc/stdio.h \
  34. -f M2libc/stdio.c \
  35. -f test/test0005/string.c \
  36. -o ${TMPDIR}/string.M1 \
  37. || exit 1
  38. # Macro assemble with libc written in M1-Macro
  39. M1 \
  40. -f M2libc/knight/knight-native_defs.M1 \
  41. -f M2libc/knight/libc-native-file.M1 \
  42. -f ${TMPDIR}/string.M1 \
  43. --big-endian \
  44. --architecture knight-native \
  45. -o ${TMPDIR}/string.hex2 \
  46. || exit 2
  47. # Resolve all linkages
  48. hex2 \
  49. -f ${TMPDIR}/string.hex2 \
  50. --big-endian \
  51. --architecture knight-native \
  52. --base-address 0x00 \
  53. -o test/results/test0005-knight-native-binary \
  54. || exit 3
  55. # Ensure binary works if host machine supports test
  56. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "knight-native" ]
  57. then
  58. # Verify that the compiled program returns the correct result
  59. out=$(vm --rom ./test/results/test0005-knight-native-binary --tape_01 /dev/stdin --tape_02 /dev/stdout --memory 2M)
  60. [ 0 = $? ] || exit 4
  61. [ "$out" = "Hello mes" ] || exit 5
  62. fi
  63. exit 0