From db18a7445780956223d5509402023a25cf0b2121 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Thu, 30 Apr 2026 22:47:54 +0200 Subject: tests: check on the existence of jetpac.nes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- scripts/test-e2e.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/test-e2e.sh b/scripts/test-e2e.sh index a613673..ae06e72 100755 --- a/scripts/test-e2e.sh +++ b/scripts/test-e2e.sh @@ -19,7 +19,12 @@ if [ ! -d code.nes ]; then fi if [ ! -d aoc2023.nes ]; then - echo "(error) You need 'aoc2023.nes' for end-to-end tests." + echo "(error) you need 'aoc2023.nes' for end-to-end tests." + exit 1 +fi + +if [ ! -d jetpac.nes ]; then + echo "(error) you need 'jetpac.nes' for end-to-end tests." exit 1 fi -- cgit v1.2.3