diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-04-30 22:47:54 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-04-30 22:47:54 +0200 |
| commit | db18a7445780956223d5509402023a25cf0b2121 (patch) | |
| tree | 00bc3ce95d127b50e449fa9c9e154d2bfbf52c62 /scripts/test-e2e.sh | |
| parent | edd501bed01e62149ed84ef9ae30e639f34a5e60 (diff) | |
| download | tools.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>
Diffstat (limited to 'scripts/test-e2e.sh')
| -rwxr-xr-x | scripts/test-e2e.sh | 7 |
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 |
