run_test.sh 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #! /bin/sh
  2. ## Copyright (C) 2017 Jeremiah Orians
  3. ## Copyright (C) 2020-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. ARCH="$1"
  20. . test/env.inc.sh
  21. TMPDIR="test/test0104/tmp-${ARCH}"
  22. mkdir -p ${TMPDIR}
  23. # Build the test
  24. ./bin/M2-Planet \
  25. --architecture ${ARCH} \
  26. -f M2libc/${ARCH}/Linux/unistd.h \
  27. -f M2libc/stdlib.c \
  28. -f M2libc/${ARCH}/Linux/fcntl.h \
  29. -f M2libc/stdio.c \
  30. -f functions/file_print.c \
  31. -f functions/match.c \
  32. -f functions/in_set.c \
  33. -f functions/numerate_number.c \
  34. -f test/test0104/kaem.c \
  35. --debug \
  36. -o ${TMPDIR}/kaem.M1 \
  37. || exit 1
  38. # Build debug footer
  39. blood-elf \
  40. ${BLOOD_ELF_WORD_SIZE_FLAG} \
  41. -f ${TMPDIR}/kaem.M1 \
  42. --entry _start \
  43. -o ${TMPDIR}/kaem-footer.M1 \
  44. || exit 2
  45. # Macro assemble with libc written in M1-Macro
  46. M1 \
  47. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  48. -f M2libc/${ARCH}/libc-full.M1 \
  49. -f ${TMPDIR}/kaem.M1 \
  50. -f ${TMPDIR}/kaem-footer.M1 \
  51. ${ENDIANNESS_FLAG} \
  52. --architecture ${ARCH} \
  53. -o ${TMPDIR}/kaem.hex2 \
  54. || exit 3
  55. # Resolve all linkages
  56. hex2 \
  57. -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
  58. -f ${TMPDIR}/kaem.hex2 \
  59. ${ENDIANNESS_FLAG} \
  60. --architecture ${ARCH} \
  61. --base-address ${BASE_ADDRESS} \
  62. -o test/results/test0104-${ARCH}-binary \
  63. || exit 4
  64. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
  65. then
  66. # Verify that the compiled program returns the correct result
  67. out=$(./test/results/test0104-${ARCH}-binary --version 2>&1 )
  68. [ 0 = $? ] || exit 5
  69. [ "$out" = "kaem version 0.6.0" ] || exit 6
  70. # Verify that the resulting file works
  71. out=$(./test/results/test0104-${ARCH}-binary --file test/test0104/kaem.run)
  72. [ "$out" = "hello world" ] || exit 7
  73. fi
  74. exit 0