From 7882e4474b77dfe4036f170cfce0e40b4f10ae93 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 10 Jan 2025 12:49:15 +0100 Subject: tests: Bundle end-to-end tests into a tarball MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This way I can simply compress all the examples to traverse with a single file, and thus no longer polluting this repository from code from other repositories. Signed-off-by: Miquel Sabaté Solà --- scripts/test-e2e.sh | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) (limited to 'scripts') 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 -- cgit v1.2.3