blob: 527262dce8f42f168e395fec6546bd366658bad2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/usr/bin/env bash
set -e
ROOT="$( cd "$( dirname "$0" )/.." && pwd )"
cd "$ROOT"
# Clean previous builds and prepare the test environment.
rm -f "$ROOT/out/test-results.txt"
make clean
sed -i 's/RUN_TESTS = 0/RUN_TESTS = 1/g' $ROOT/test/defines.s
# Github Actions do not allow GUI programs to be run. This means that the code
# below will always fail (fceux won't be able to run). There is a way to emulate
# an X server with tools like xvfb-run or xvncserver, but so far I've had no
# luck on this front.
if [ -n "${GITHUB_ACTION}" ]; then
exit 0
fi
# Run all the tests that we have on Lua.
for name in $(seq 4); do
DEBUG=1 make out/$name.nes
fceux --loadlua "$ROOT/test/$name.lua" "$ROOT/out/$name.nes"
done
# Show the results.
cat "$ROOT/out/test-results.txt"
n=$(cat "$ROOT/out/test-results.txt" | grep FAIL | wc -l)
echo ""
case $n in
0)
echo "All tests passed!"
exit 0
;;
1)
echo "1 test failed!"
exit 1
;;
*)
echo "$n tests failed!"
exit 1
;;
esac
|