M2-Planet/test/test100/hello-x86.sh

90 lines
2.6 KiB
Bash
Raw Normal View History

2018-02-24 02:18:23 +00:00
#! /bin/sh
## Copyright (C) 2017 Jeremiah Orians
## 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/>.
2018-02-24 02:18:23 +00:00
set -ex
# Build the test
2019-03-09 16:56:16 +00:00
./bin/M2-Planet --architecture x86 \
-f test/common_x86/functions/file.c \
2019-02-24 22:46:05 +00:00
-f test/common_x86/functions/malloc.c \
2018-08-21 01:41:37 +01:00
-f functions/calloc.c \
2019-02-24 01:18:53 +00:00
-f test/common_x86/functions/exit.c \
2018-08-21 01:41:37 +01:00
-f functions/match.c \
-f functions/in_set.c \
2018-08-21 01:41:37 +01:00
-f functions/numerate_number.c \
-f functions/file_print.c \
2019-02-24 22:46:05 +00:00
-f functions/number_pack.c \
2018-08-21 01:41:37 +01:00
-f functions/string.c \
2018-06-22 02:33:50 +01:00
-f cc.h \
-f cc_reader.c \
-f cc_strings.c \
-f cc_types.c \
-f cc_core.c \
-f cc.c \
2018-08-26 21:34:31 +01:00
--debug \
2018-06-22 02:33:50 +01:00
-o test/test100/cc.M1 || exit 1
2018-02-24 02:18:23 +00:00
2018-08-26 21:34:31 +01:00
# Build debug footer
blood-elf -f test/test100/cc.M1 \
-o test/test100/cc-footer.M1 || exit 2
2018-02-24 02:18:23 +00:00
# Macro assemble with libc written in M1-Macro
M1 -f test/common_x86/x86_defs.M1 \
-f test/common_x86/libc-core.M1 \
2018-02-24 02:18:23 +00:00
-f test/test100/cc.M1 \
2018-08-26 21:34:31 +01:00
-f test/test100/cc-footer.M1 \
2018-02-24 02:18:23 +00:00
--LittleEndian \
--architecture x86 \
2018-08-26 21:34:31 +01:00
-o test/test100/cc.hex2 || exit 3
2018-02-24 02:18:23 +00:00
# Resolve all linkages
2018-08-26 21:34:31 +01:00
hex2 -f test/common_x86/ELF-i386-debug.hex2 \
-f test/test100/cc.hex2 \
--LittleEndian \
--architecture x86 \
2018-08-26 21:34:31 +01:00
--BaseAddress 0x8048000 \
2019-03-09 16:56:16 +00:00
-o test/results/test100-x86-binary --exec_enable || exit 4
2018-02-24 02:18:23 +00:00
# Ensure binary works if host machine supports test
if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "x86" ]
2018-02-24 02:18:23 +00:00
then
# Verify that the resulting file works
2019-03-09 16:56:16 +00:00
./test/results/test100-x86-binary --architecture x86 \
-f test/common_x86/functions/file.c \
2019-02-24 22:46:05 +00:00
-f test/common_x86/functions/malloc.c \
2018-08-21 01:41:37 +01:00
-f functions/calloc.c \
2019-02-24 01:18:53 +00:00
-f test/common_x86/functions/exit.c \
2018-08-21 01:41:37 +01:00
-f functions/match.c \
-f functions/in_set.c \
2018-08-21 01:41:37 +01:00
-f functions/numerate_number.c \
-f functions/file_print.c \
2019-02-24 22:46:05 +00:00
-f functions/number_pack.c \
2018-08-21 01:41:37 +01:00
-f functions/string.c \
2018-02-24 02:18:23 +00:00
-f cc.h \
-f cc_reader.c \
-f cc_strings.c \
-f cc_types.c \
-f cc_core.c \
-f cc.c \
2018-08-26 21:34:31 +01:00
-o test/test100/proof || exit 5
2018-02-24 02:18:23 +00:00
. ./sha256.sh
out=$(sha256_check test/test100/proof.answer)
2018-08-26 21:34:31 +01:00
[ "$out" = "test/test100/proof: OK" ] || exit 6
2019-03-09 16:56:16 +00:00
[ ! -e bin/M2-Planet ] && mv test/results/test100-x86-binary bin/M2-Planet
2018-02-24 02:18:23 +00:00
fi
exit 0