M2-Planet/test/test23/hello.sh

59 lines
1.5 KiB
Bash
Raw Normal View History

2018-06-02 03:52:30 +01:00
#! /bin/sh
set -x
# Build the test
./bin/M2-Planet -f test/functions/exit.c \
-f test/functions/file.c \
-f test/functions/file_print.c \
-f test/functions/malloc.c \
-f test/functions/calloc.c \
-f test/functions/match.c \
-f test/functions/numerate_number.c \
-f test/functions/string.c \
-f test/test23/M1-macro.c \
--debug \
2018-06-02 03:52:30 +01:00
-o test/test23/M1-macro.M1 || exit 1
# Build debug footer
blood-elf -f test/test23/M1-macro.M1 \
-o test/test23/M1-macro-footer.M1 || exit 2
2018-06-02 03:52:30 +01:00
# Macro assemble with libc written in M1-Macro
M1 -f test/common_x86/x86_defs.M1 \
-f test/functions/libc-core.M1 \
-f test/test23/M1-macro.M1 \
-f test/test23/M1-macro-footer.M1 \
2018-06-02 03:52:30 +01:00
--LittleEndian \
--Architecture 1 \
-o test/test23/M1-macro.hex2 || exit 3
2018-06-02 03:52:30 +01:00
# Resolve all linkages
hex2 -f test/common_x86/ELF-i386-debug.hex2 \
2018-06-02 03:52:30 +01:00
-f test/test23/M1-macro.hex2 \
--LittleEndian \
--Architecture 1 \
--BaseAddress 0x8048000 \
-o test/results/test23-binary \
--exec_enable || exit 4
2018-06-02 03:52:30 +01:00
# Ensure binary works if host machine supports test
if [ "$(get_machine)" = "x86_64" ]
then
# Verify that the compiled program returns the correct result
out=$(./test/results/test23-binary --version 2>&1 )
[ 0 = $? ] || exit 5
[ "$out" = "M1 0.3" ] || exit 6
2018-06-02 03:52:30 +01:00
# Verify that the resulting file works
./test/results/test23-binary -f \
test/common_x86/x86_defs.M1 \
-f test/functions/libc-core.M1 \
-f test/test21/test.M1 \
--LittleEndian \
--Architecture 1 \
-o test/test23/proof || exit 7
2018-06-02 03:52:30 +01:00
out=$(sha256sum -c test/test23/proof.answer)
[ "$out" = "test/test23/proof: OK" ] || exit 8
2018-06-02 03:52:30 +01:00
fi
exit 0