aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-04-30 22:47:54 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-04-30 22:47:54 +0200
commitdb18a7445780956223d5509402023a25cf0b2121 (patch)
tree00bc3ce95d127b50e449fa9c9e154d2bfbf52c62
parentedd501bed01e62149ed84ef9ae30e639f34a5e60 (diff)
downloadtools.nes-db18a7445780956223d5509402023a25cf0b2121.tar.gz
tools.nes-db18a7445780956223d5509402023a25cf0b2121.zip
tests: check on the existence of jetpac.nes
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
-rwxr-xr-xscripts/test-e2e.sh7
1 files changed, 6 insertions, 1 deletions
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