hello-x86.sh 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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/test0019/tmp-x86"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. bin/M2-Planet \
  23. --architecture x86 \
  24. -f test/common_x86/functions/file.c \
  25. -f test/common_x86/functions/malloc.c \
  26. -f functions/calloc.c \
  27. -f test/common_x86/functions/exit.c \
  28. -f functions/match.c \
  29. -f functions/in_set.c \
  30. -f functions/numerate_number.c \
  31. -f functions/file_print.c \
  32. -f test/test0019/getopt.c \
  33. --bootstrap-mode \
  34. -o ${TMPDIR}/getopt.M1 \
  35. || exit 1
  36. # Macro assemble with libc written in M1-Macro
  37. M1 \
  38. -f test/common_x86/x86_defs.M1 \
  39. -f test/common_x86/libc-core.M1 \
  40. -f ${TMPDIR}/getopt.M1 \
  41. --LittleEndian \
  42. --architecture x86 \
  43. -o ${TMPDIR}/getopt.hex2 \
  44. || exit 2
  45. # Resolve all linkages
  46. hex2 \
  47. -f test/common_x86/ELF-i386.hex2 \
  48. -f ${TMPDIR}/getopt.hex2 \
  49. --LittleEndian \
  50. --architecture x86 \
  51. --BaseAddress 0x8048000 \
  52. -o test/results/test0019-x86-binary \
  53. --exec_enable \
  54. || exit 3
  55. # Ensure binary works if host machine supports test
  56. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "x86" ]
  57. then
  58. . ./sha256.sh
  59. # Verify that the resulting file works
  60. ./test/results/test0019-x86-binary -f test/test0019/input -o test/test0019/proof || exit 4
  61. out=$(sha256_check test/test0019/proof.answer)
  62. [ "$out" = "test/test0019/proof: OK" ] || exit 5
  63. fi
  64. exit 0