diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/test-e2e.sh | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/scripts/test-e2e.sh b/scripts/test-e2e.sh index 3f8729c..554e3bb 100755 --- a/scripts/test-e2e.sh +++ b/scripts/test-e2e.sh @@ -2,16 +2,27 @@ set -ex -rm -rf tests/out/ -mkdir -p tests/out/ +pushd tests + +rm -rf out/ +mkdir -p out/ + +if [ ! -d code.nes ]; then + tar xzvf code.nes.tar.gz +fi + +popd cargo build -./target/debug/nasm -c nrom -Werror -o tests/out/sprite.nes tests/src/sprite.s -diff tests/out/sprite.nes tests/bin/sprite.nes +./target/debug/nasm -c nrom65 -o tests/out/sprite.nes tests/code.nes/basics/sprite.s +diff tests/out/sprite.nes tests/code.nes/out/basics/sprite.nes + +./target/debug/nasm -c unrom -o tests/out/chr-ram.nes tests/code.nes/basics/chr-ram.s +diff tests/out/chr-ram.nes tests/code.nes/out/basics/chr-ram.nes -./target/debug/nasm -c unrom -o tests/out/chr-ram.nes tests/src/chr-ram.s -diff tests/out/chr-ram.nes tests/bin/chr-ram.nes +./target/debug/nasm -c nrom65 -o tests/out/flicker.nes tests/code.nes/basics/flicker.s +diff tests/out/flicker.nes tests/code.nes/out/basics/flicker.nes -./target/debug/nasm -c nrom -Werror -o tests/out/flicker.nes tests/src/flicker/flicker.s -diff tests/out/flicker.nes tests/bin/flicker.nes +./target/debug/nasm -c nrom65 -o tests/out/space.nes tests/code.nes/space/src/space.s +diff tests/out/space.nes tests/code.nes/out/space/space.nes |
