12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #! /bin/sh
- ## Copyright (C) 2017 Jeremiah Orians
- ## Copyright (C) 2020-2021 deesix <deesix@tuta.io>
- ## This file is part of M2-Planet.
- ##
- ## M2-Planet is free software: you can redistribute it and/or modify
- ## it under the terms of the GNU General Public License as published by
- ## the Free Software Foundation, either version 3 of the License, or
- ## (at your option) any later version.
- ##
- ## M2-Planet is distributed in the hope that it will be useful,
- ## but WITHOUT ANY WARRANTY; without even the implied warranty of
- ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ## GNU General Public License for more details.
- ##
- ## You should have received a copy of the GNU General Public License
- ## along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
- set -ex
- ARCH="$1"
- . test/env.inc.sh
- TMPDIR="test/test0105/tmp-${ARCH}"
- mkdir -p ${TMPDIR}
- # Build the test
- ./bin/M2-Planet \
- --architecture ${ARCH} \
- -f M2libc/sys/types.h \
- -f M2libc/stddef.h \
- -f M2libc/signal.h \
- -f M2libc/sys/utsname.h \
- -f M2libc/${ARCH}/linux/unistd.c \
- -f M2libc/${ARCH}/linux/fcntl.c \
- -f M2libc/fcntl.c \
- -f M2libc/stdlib.c \
- -f M2libc/stdio.h \
- -f M2libc/stdio.c \
- -f M2libc/bootstrappable.c \
- -f test/test0105/lisp.h \
- -f test/test0105/lisp.c \
- -f test/test0105/lisp_cell.c \
- -f test/test0105/lisp_eval.c \
- -f test/test0105/lisp_print.c \
- -f test/test0105/lisp_read.c \
- --debug \
- -o ${TMPDIR}/lisp.M1 \
- || exit 1
- # Build debug footer
- blood-elf \
- ${BLOOD_ELF_WORD_SIZE_FLAG} \
- -f ${TMPDIR}/lisp.M1 \
- ${ENDIANNESS_FLAG} \
- --entry _start \
- -o ${TMPDIR}/lisp-footer.M1 \
- || exit 2
- # Macro assemble with libc written in M1-Macro
- M1 \
- -f M2libc/${ARCH}/${ARCH}_defs.M1 \
- -f M2libc/${ARCH}/libc-full.M1 \
- -f ${TMPDIR}/lisp.M1 \
- -f ${TMPDIR}/lisp-footer.M1 \
- ${ENDIANNESS_FLAG} \
- --architecture ${ARCH} \
- -o ${TMPDIR}/lisp.hex2 \
- || exit 3
- # Resolve all linkages
- hex2 \
- -f M2libc/${ARCH}/ELF-${ARCH}-debug.hex2 \
- -f ${TMPDIR}/lisp.hex2 \
- ${ENDIANNESS_FLAG} \
- --architecture ${ARCH} \
- --base-address ${BASE_ADDRESS} \
- -o test/results/test0105-${ARCH}-binary \
- || exit 4
- # Ensure binary works if host machine supports test
- if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "${ARCH}" ]
- then
- # Verify that the compiled program returns the correct result
- out=$(./test/results/test0105-${ARCH}-binary --version 2>&1 )
- [ 0 = $? ] || exit 5
- [ "$out" = "Slow_Lisp 0.1" ] || exit 6
- # Verify that the resulting file works
- out=$(./test/results/test0105-${ARCH}-binary --file test/test0105/test.scm)
- [ "$out" = "42" ] || exit 7
- fi
- exit 0
|