hello-amd64.sh 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. # Build the test
  19. bin/M2-Planet --architecture amd64 \
  20. -f test/common_amd64/functions/file.c \
  21. -f test/test0023/fseek.c \
  22. --debug \
  23. --bootstrap-mode \
  24. -o test/test0023/fseek.M1 || exit 1
  25. # Build debug footer
  26. blood-elf --64 -f test/test0023/fseek.M1 \
  27. --entry _start \
  28. -o test/test0023/fseek-footer.M1 || exit 2
  29. # Macro assemble with libc written in M1-Macro
  30. M1 -f test/common_amd64/amd64_defs.M1 \
  31. -f test/common_amd64/libc-core.M1 \
  32. -f test/test0023/fseek.M1 \
  33. -f test/test0023/fseek-footer.M1 \
  34. --LittleEndian \
  35. --architecture amd64 \
  36. -o test/test0023/fseek.hex2 || exit 3
  37. # Resolve all linkages
  38. hex2 -f test/common_amd64/ELF-amd64-debug.hex2 \
  39. -f test/test0023/fseek.hex2 \
  40. --LittleEndian \
  41. --architecture amd64 \
  42. --BaseAddress 0x00600000 \
  43. -o test/results/test0023-amd64-binary \
  44. --exec_enable || exit 4
  45. # Ensure binary works if host machine supports test
  46. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "amd64" ]
  47. then
  48. . ./sha256.sh
  49. # Verify that the resulting file works
  50. ./test/results/test0023-amd64-binary test/test0023/question >| test/test0023/proof
  51. [ 0 = $? ] || exit 5
  52. out=$(sha256_check test/test0023/proof.answer)
  53. [ "$out" = "test/test0023/proof: OK" ] || exit 6
  54. fi
  55. exit 0