Files
rgbds/test/external/test.sh
T

37 lines
785 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
export LC_ALL=C
# Game Boy release date, 1989-04-21T12:34:56Z (for reproducible test results)
export SOURCE_DATE_EPOCH=609165296
cd "$(dirname "$0")"
if [ ! -f "$1.cfg" ]; then
echo >&2 'External test file '"$1"'.cfg does not exist'
exit 1
fi
# Sourcing "$1.cfg" defines `EXT_TEST_*` variables used below.
. "$1.cfg"
if ! cd "$EXT_TEST_REPO"; then
echo >&2 'Please fetch test deps before running any external test'
exit 1
fi
RGBDS_PATH="RGBDS=../../../"
make clean $RGBDS_PATH
make -j4 "$EXT_TEST_TARGET" $RGBDS_PATH
hash="$(sha1sum -b "$EXT_TEST_FILE" | head -c 40)"
if [ "$hash" != "$EXT_TEST_HASH" ]; then
cat >&2 <<EOM
error: "$EXT_TEST_FILE" checksum did not match!
Expected $EXT_TEST_HASH,
got $hash
EOM
exit 1
fi