run_test.sh 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #! /bin/sh
  2. ## Copyright (C) 2017 Jeremiah Orians
  3. ## This file is part of M2-Planet.
  4. ##
  5. ## M2-Planet is free software: you can redistribute it and/or modify
  6. ## it under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation, either version 3 of the License, or
  8. ## (at your option) any later version.
  9. ##
  10. ## M2-Planet is distributed in the hope that it will be useful,
  11. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ## GNU General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
  17. set -x
  18. ARCH="$1"
  19. . test/env.inc.sh
  20. TMPDIR="test/test0031/tmp-${ARCH}"
  21. mkdir -p ${TMPDIR}
  22. # Build the test
  23. bin/M2-Planet \
  24. --architecture ${ARCH} \
  25. --debug \
  26. -f M2libc/sys/types.h \
  27. -f M2libc/stddef.h \
  28. -f M2libc/signal.h \
  29. -f M2libc/sys/utsname.h \
  30. -f M2libc/${ARCH}/linux/unistd.c \
  31. -f M2libc/${ARCH}/linux/fcntl.c \
  32. -f M2libc/fcntl.c \
  33. -f M2libc/stdlib.c \
  34. -f M2libc/stdio.h \
  35. -f M2libc/stdio.c \
  36. -f M2libc/bootstrappable.c \
  37. -f test/test0031/switch.c \
  38. -o ${TMPDIR}/switch.M1 \
  39. || exit 1
  40. # Build debug footer
  41. blood-elf \
  42. ${BLOOD_ELF_WORD_SIZE_FLAG} \
  43. -f ${TMPDIR}/switch.M1 \
  44. ${ENDIANNESS_FLAG} \
  45. --entry _start \
  46. -o ${TMPDIR}/switch-footer.M1 \
  47. || exit 2
  48. # Macro assemble with libc written in M1-Macro
  49. M1 \
  50. -f M2libc/${ARCH}/${ARCH}_defs.M1 \
  51. -f M2libc/${ARCH}/libc-core.M1 \
  52. -f ${TMPDIR}/switch.M1 \
  53. -f ${TMPDIR}/switch-footer.M1 \
  54. ${ENDIANNESS_FLAG} \
  55. --architecture ${ARCH} \
  56. -o ${TMPDIR}/switch.hex2 \
  57. || exit 2
  58. # Resolve all linkages
  59. hex2 \
  60. -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
  61. -f ${TMPDIR}/switch.hex2 \
  62. ${ENDIANNESS_FLAG} \
  63. --architecture ${ARCH} \
  64. --base-address ${BASE_ADDRESS} \
  65. -o test/results/test0031-${ARCH}-binary \
  66. || exit 3
  67. # Ensure binary works if host machine supports test
  68. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
  69. then
  70. # Verify that the resulting file works first default case
  71. ./test/results/test0031-${ARCH}-binary
  72. [ 111 = $? ] || exit 4
  73. ./test/results/test0031-${ARCH}-binary test1
  74. [ 122 = $? ] || exit 4
  75. ./test/results/test0031-${ARCH}-binary test2
  76. [ 31 = $? ] || exit 4
  77. ./test/results/test0031-${ARCH}-binary test3
  78. [ 43 = $? ] || exit 4
  79. ./test/results/test0031-${ARCH}-binary test4
  80. [ 155 = $? ] || exit 4
  81. ./test/results/test0031-${ARCH}-binary test5
  82. [ 133 = $? ] || exit 4
  83. ./test/results/test0031-${ARCH}-binary test6
  84. [ 84 = $? ] || exit 4
  85. ./test/results/test0031-${ARCH}-binary test7
  86. [ 151 = $? ] || exit 4
  87. fi
  88. exit 0